Skip to content

Instantly share code, notes, and snippets.

@nissuk
Created April 17, 2011 13:58
Show Gist options
  • Save nissuk/924046 to your computer and use it in GitHub Desktop.
Save nissuk/924046 to your computer and use it in GitHub Desktop.
Qdmail: qd_send_mail()でReply-Toヘッダをつけてメール送信する単純な例
<?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