如何在phplist中发送个性化电子邮件

发布于 2024-11-13 00:39:41 字数 130 浏览 2 评论 0原文

有没有办法可以向 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

瀞厅☆埖开 2024-11-20 00:39:41

由于您将用户列表存储在 MySQL 数据库中,因此只需从数据库中选择用户,然后使用查询结果向每轮循环中的每个用户发送一封邮件即可。例如,

<?php
    $result = mysql_query("SELECT * FROM mail_list");
    while ($row = mysql_fetch_array($result, MYSQL_NUM)) {
        $message = "Dear $row['username']";
        $message .= "More...";
        $phpmailer->mail($row['email'], $message, $header); // just for example
    }
?>

您自己弄清楚,代码可能不适合您的上下文,祝您好运(:

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,

<?php
    $result = mysql_query("SELECT * FROM mail_list");
    while ($row = mysql_fetch_array($result, MYSQL_NUM)) {
        $message = "Dear $row['username']";
        $message .= "More...";
        $phpmailer->mail($row['email'], $message, $header); // just for example
    }
?>

Figure it out yourself, the code might not fit your context, good luck (:

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文