2010-08-29 167 views
0

我想用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); 
?> 

但不是其實際發送電子郵件,我希望它輸出的電子郵件與所有到文件頭等等作爲郵件服務器會看到它。

回答

0

我們使用Zend_Mail庫,並有不同的傳輸目的地(SMTP,STDOUT,文件等)。以防萬一這是一個選項,這裏有關於Zend_Mail transports的一些信息。

+0

這把我推在正確的方向。由於我使用的是蛋糕,因此我可以在電子郵件組件上使用「調試」輸出方法,並從會話中提取電子郵件信息。謝謝! – 2010-09-01 14:13:20

相關問題