在 Swift Mailer 中创建自定义消息正文
我正在使用 PHP Swift Mailer 向我的用户发送邮件,其电子邮件和姓名存储在我的数据库中,我可以使用 SwiftMailer 的 batchSend() 方法向他们发送邮件。但我想发送每个邮件正文以特定于每个用户,例如示例.. 如果我有 3 个用户的姓名和电子邮件(user1=> [电子邮件受保护], user2=> [电子邮件受保护], user3=> [电子邮件受保护]),在我想要的正文中 你好,用户名。消息。谢谢,用户名
如何做到这一点,是否有任何插件或方法可用于编写自定义消息。
I am using PHP Swift Mailer to send Mail to my user, whose email and name are stored in my database, I am able to send them mail using SwiftMailer's batchSend() method. but i want to send every mail body to be specific to each user like example..
if i have 3 user with name and email(user1=> [email protected], user2=> [email protected], user3=> [email protected]), in body i wanthello, user_name. the message. thank you, user_name
how can this be done, is there any Plugin or method available for composing custom message.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
嘿,我得到了解决方案,它在 Swift Mailer 文档的插件部分中给出。
我们可以使用 Swift Mailer 的装饰器插件来做到这一点。在问问题之前我应该完整阅读文档..
hey i got the solution, it was given in the Swift Mailer documentation, in Plugin Section.
We can do this by using the Decorator Plugin of Swift Mailer. Before asking the question i should have read the documentation completely..