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 = '[email protected]';
$subject = 'Booking Inquiry BK-00-415-193';
$message = 'hello';
$headers = 'From: [email protected] <[email protected]>' . "\r\n" .
'Reply-To: [email protected]' . "\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