Skip to content

Instantly share code, notes, and snippets.

@jlapitan
Last active January 20, 2020 12:46
Show Gist options
  • Save jlapitan/c8943d949b461738c73a7d32443a5255 to your computer and use it in GitHub Desktop.
Save jlapitan/c8943d949b461738c73a7d32443a5255 to your computer and use it in GitHub Desktop.
email with reply to
<?php
$to = 'user@members.com';
$subject = 'Booking Inquiry BK-00-415-193';
$message = 'hello';
$headers = 'From: hotelsEmail@email.com <donotreply@theentertainerme.com>' . "\r\n" .
'Reply-To: hotelsEmail@email.com' . "\r\n";
mail($to, $subject, $message, $headers);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment