Created
April 17, 2011 13:58
-
-
Save nissuk/924046 to your computer and use it in GitHub Desktop.
Qdmail: qd_send_mail()でReply-Toヘッダをつけてメール送信する単純な例
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
require_once 'qdmail.php'; | |
$to = array('[email protected]', 'to san'); | |
$from = array('[email protected]', 'from san'); | |
$reply_to = array('[email protected]', 'reply san'); | |
$subject = 'subject'; | |
$message = 'message'; | |
qd_send_mail('text', $to, $subject, $message, array( | |
'From' => $from, | |
'Reply-To' => $reply_to | |
)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment