我正在创建一个允许上传多个文件的表单.然后将表单域值和附件通过电子邮件发送到某个地址.我使用
Swiftmailer生成这些电子邮件.我知道如何使用Swiftmailer附加文件,但是我不知道如何附加多个文件.有人知道这是否可以使用Swiftmailer?
是的,这只是一个要多次调用attach()的问题:
原文链接:https://www.f2er.com/php/139829.html$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