Skip to content

Instantly share code, notes, and snippets.

@lantins
Created September 3, 2008 11:35
Show Gist options
  • Save lantins/8570 to your computer and use it in GitHub Desktop.
Save lantins/8570 to your computer and use it in GitHub Desktop.
<?php
// Find the code you see below... (starting at line 18)
$mail_headers = 'From: [email protected]';
$mail_headers = 'Reply-To: [email protected]';
// Change it to this:
$mail_headers = 'From: [email protected]' . "\r\n";
$mail_headers .= 'Reply-To: [email protected]' . "\r\n";
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment