如何使用Swift邮件库发送附件?

时间:2011-07-13 04:14:02

标签: php swiftmailer

如果有的话,请告诉我。如何使用Swift库发送附件(doc / image等)?

1 个答案:

答案 0 :(得分:5)

$message = Swift_Message::newInstance('Subject here', 'Body here');

$message->attach(Swift_Attachment::fromPath('/path/to/file'));