在没有PEAR库的情况下,在PHP中添加附件到电子邮件

时间:2011-11-03 09:12:53

标签: php cakephp

如何在没有梨库的PHP中将附件插入电子邮件?

2 个答案:

答案 0 :(得分:0)

最好使用库,但是如果您只想使用邮件,则必须使用chunk_split(base64_encode())在标题中添加附件的内容。

以下是一个例子:

http://www.geekology.co.za/blog/2009/06/sending-emails-with-attachments-using-php-mail-function/

BTW SwiftMail是一个很棒的电子邮件库:

http://swiftmailer.org/wikidocs/v3/tutorials/attachments

答案 1 :(得分:0)

由于此问题标记为CakePHP,您可能希望使用cakephp email component。如果需要,我可以提供一些代码。