phpmailer将外发邮件添加到发件箱

时间:2013-02-21 09:29:31

标签: php email

我正在使用以下脚本发送带有php的邮件

$status = $_POST['status'];
$subject = $_POST['subject'];
$from = "info@example.com";
$headers  = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=utf-8' . "\r\n";
$headers  .= "From: $from\r\n";
$recipment = $_POST['to'];


if (mail($emailTo, $subject, $body, $headers)){

    return 'Email sent!';

}

我想将所有外发邮件的副本保存到已使用的帐户发件箱中。 哪些php邮件程序功能可用于实现此目的。

0 个答案:

没有答案