Advertisement
Guest User

Untitled

a guest
Jun 20th, 2017
158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.99 KB | None | 0 0
  1.                                 $to      = $User_Contact_Call;
  2.                                 $subject = "$Social_Domain Registration";
  3.                                 $message = "Welcome to $Social_Name\r\r";
  4.                                 $message .= "You, or someone using this email address, has completed the first stage of the signup at $Social_Domain. under the following details.";
  5.                                 $message .= "\r\rUsername: $User_ID_Call\rPassword: $User_Key_Call\rEmail: $User_Contact_Call\r\rAccount Key: $activationKey";
  6.                                 $message .= "\r\rYou can complete the signup by clicking the following link:\r\r";
  7.                                 $message .= "$Social_Domain/signup.php?Call=3&CKey=$activationKey\r\r";
  8.                                 $message .= "If this is an error, ignore this email and contact the administrator of the site.\r\r";
  9.                                 $message .= "Regards,\r     $Social_Name($Social_Domain), have a nice day.";
  10.                                 $headers = 'From: ' . $Social_Email . '' . "\r\n" .
  11.                                 'Reply-To: ' . $User_Contact_Call . '' . "\r\n" .
  12.                                 'X-Mailer: PHP/' . phpversion();
  13.                                 mail($to, $subject, $message, $headers);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement