Skip to content

Instantly share code, notes, and snippets.

@nissuk
Created April 17, 2011 13:58
Show Gist options
  • Select an option

  • Save nissuk/924046 to your computer and use it in GitHub Desktop.

Select an option

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('to@example.com', 'to san');
$from = array('from@example.com', 'from san');
$reply_to = array('reply-to@example.com', '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