如何在phplist中发送个性化电子邮件
有没有办法可以向 phplist 中同一列表上的不同用户发送个性化电子邮件?例如我写了这条消息:
亲爱的[姓名] 这是内容
如果有办法修改[姓名]以收件人的实际姓名发送电子邮件,我该怎么做?
谢谢
Is there a way that I can send personalized emails to different users on the same list in phplist? for example i composed this message:
Dear [name]
This is the content
If there is a way to modify the [name] to send emails with the actual name of the recipient how can I do it?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
由于您将用户列表存储在 MySQL 数据库中,因此只需从数据库中选择用户,然后使用查询结果向每轮循环中的每个用户发送一封邮件即可。例如,
您自己弄清楚,代码可能不适合您的上下文,祝您好运(:
As you store the user list on a MySQL database, so just simply select the users from the database, and then send a mail to every user on each round of the loop, using result from the query. For example,
Figure it out yourself, the code might not fit your context, good luck (: