使用Swiftmailer的多个附件

jak*_*ake 12 php email swiftmailer

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

ont*_*ia_ 21

是的,这只是一个多次调用的问题attach():

$message->attach(Swift_Attachment::fromPath('../../uploads/hocuradit/' . $attPath . $attA)); 
$message->attach(Swift_Attachment::fromPath('../../uploads/hocuradit/' . $attPath . $attB)); 
Run Code Online (Sandbox Code Playgroud)

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