我想用mail()
功能生成電子郵件提交:生成的電子郵件,不發送
<?php
$to = '[email protected]';
$subject = 'the subject';
$message = 'hello';
$headers = 'From: [email protected]' . "\r\n" .
'Reply-To: [email protected]' . "\r\n" .
'X-Mailer: PHP/' . phpversion();
// instead of sending mail, out put to file
mail($to, $subject, $message, $headers);
?>
但不是其實際發送電子郵件,我希望它輸出的電子郵件與所有到文件頭等等作爲郵件服務器會看到它。
這把我推在正確的方向。由於我使用的是蛋糕,因此我可以在電子郵件組件上使用「調試」輸出方法,並從會話中提取電子郵件信息。謝謝! – 2010-09-01 14:13:20