Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2017
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.08 KB | None | 0 0
  1.                                                         $to      = $User_sue;
  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\rPassword: $User_Key_Before\rEmail: $User_sue\r\rAccount Key: $activationKey";
  6.                                                         $message .= "\r\rYou can complete the signup by clicking the following link:\r\r";
  7.                                                         $message .= "$Social_Domain/duo_parts/duo_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: ' . $Social_Email . '' . "\r\n" .
  12.                                                         'X-Mailer: PHP/' . phpversion();
  13.                                                         mail($to, $subject, $message, $headers) or die("error while mailing");
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement