Skip to content

Instantly share code, notes, and snippets.

@MistrySaurabh
Created April 4, 2018 03:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MistrySaurabh/4809e8655e5bdee262e2c350f961dabe to your computer and use it in GitHub Desktop.
Save MistrySaurabh/4809e8655e5bdee262e2c350f961dabe to your computer and use it in GitHub Desktop.
$to =$user->email;
$subject = 'the subject';
$message = 'hello';
$headers = 'From: notification@weopined.com' . "\r\n" .
'Reply-To: notification@weopined.com' . "\r\n" .
'X-Mailer: PHP/' . phpversion();
mail($to, $subject, $message, $headers);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment