gpt4 book ai didi

email - swiftmailer::发送虚拟文件?

转载 作者:行者123 更新时间:2023-12-04 06:40:00 26 4
gpt4 key购买 nike

我正在向一个 api 发送电子邮件,该 api 从附加文件中获取其内容。

我不想实际创建文件(就像一行文本)然后附加并发送它。

是否可以创建文件流并通过 swiftmailer 发送?

最佳答案

结果 Swiftmailer supports Dynamic Attachments .

基本思想是:

//Create your content in a variable.
$content = "Hi there\r\nHow are you";

//Create a Swiftmailer attachment
//specify the data, filename, mimetype
$attachment = Swift_Attachment::newInstance($content, 'my-file.pdf', 'application/pdf');

//attach the file
$message->attach($attachment);

希望这可以帮助那里的人。

关于email - swiftmailer::发送虚拟文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4383004/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com