使用Swiftmailer的多个附件

时间:2011-05-25 00:48:22

标签: php email swiftmailer

我正在创建一个允许上传多个文件的表单。然后将表单字段值和附件通过电子邮件发送到特定地址。我正在使用Swiftmailer生成这些电子邮件。我知道如何使用Swiftmailer附加文件,但我不知道如何附加多个文件。有人知道使用Swiftmailer是否可行吗?

1 个答案:

答案 0 :(得分:21)

是的,只需要多次调用attach()

$message->attach(Swift_Attachment::fromPath('../../uploads/hocuradit/' . $attPath . $attA)); 
$message->attach(Swift_Attachment::fromPath('../../uploads/hocuradit/' . $attPath . $attB)); 

来源:http://groups.google.com/group/swiftmailer/browse_thread/thread/416b287591dfe931?fwc=1