寻找使用 MySQL 后端的 mailman 等效项
我一直在使用安装在我的服务器上的 Mailman 运行一个邮件列表,以便邮件列表中的任何人都可以将电子邮件发送到单个电子邮件地址,并将其发送给列表中的每个人。我现在想找到一种使用 MySQL 表来存储用户的类似操作的方法,因为我希望人们能够通过网站上的表单注册到邮件列表,并且我还想使用MySQL 数据库用于其他目的。
有人可以建议 Mailman 的任何替代品吗?
谢谢,
尼克
I have been running a mailing list using Mailman which is installed on my server, so that anyone on the mailing list can send an email to a single email address and it gets sent out to everyone on the list. I would now like to find a way of doing something similar using a MySQL table to store the users in, as I want people to be able to sign up to the Mailing List through a form on a website, and I would also like to use the MySQL database for other purposes.
Could someone suggest any such alternatives to Mailman?
Thanks,
Nick
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
可能的替代方案是从 Python 连接到 mailman,特别是如果您的 Web 编程环境是基于 python 的。检查 mailman 附带的
withlist
脚本,了解如何获取列表对象,您可以在其中读取现有成员并从 Web 应用程序添加新成员。我现在看到您已经用 php 标记了该帖子,所以这可能不是一个选项。不过,请考虑从 PHP 脚本调用现有脚本,例如
add_members
。What might be an alternative - especially if your web programming environment is python-based - is to hook into mailman from Python. Inspect the
withlist
script that comes with mailman for inspiration on how to get hold of a list object where you can read existing members and add new ones from your web app.I see now you've tagged the post with php, so this is probably not an option. Still, consider calling the existing scripts such as
add_members
from your PHP script.Mailman 3 正在开发中并将提供此功能。他们刚刚推出了第一个测试版。
Mailman 3 is in development and will offer this feature. They just came out with the first beta version.