PHP Mail类 - 包含一个html文件作为正文

时间:2016-09-03 09:50:49

标签: php html email phpmailer

是否可以将html文档包含为" message"在php邮件程序类?

我的html文件只包含邮件,我想发送包含此内容的邮件。如果可以将此内容加载到php邮件类中,那么在浏览器中没有任何输出的情况下如何实现。如果我file_get_contents(),它会自动在浏览器中显示html文件的内容。

感谢您的帮助。

2 个答案:

答案 0 :(得分:2)

是。这样做:

$mail->Body = file_get_contents('path/to/file.html');

答案 1 :(得分:0)

您可以使用file_get_contents()阅读文件的内容,就像使用文件流一样。

Here are informations about the function from PHP.

注意如果您想在邮件主体中使用HTML,则必须在mailheader中说明。