Joomla 的简单邮件列表(不是时事通讯)?
有没有办法让 joomla 执行以下操作:
我有几个邮件帐户应该充当讨论邮件列表。 管理员(并且仅管理员)维护属于特定讨论组邮件地址的客户电子邮件地址列表。 每当邮件发送到例如specialinterestdiscussion(at)mydomain.com时,该邮件将自动转发给属于该列表的所有客户。 如果发件人是该邮件列表的一部分,则不会再次将其转发给他。 发件人不一定必须是维护列表的一部分。
所以基本上它是一个简单的邮件列表。
Is there a way I can make joomla do the following:
I have several mail accounts that should act as a discussion mailing-list. The administrator (and only the adminstrator) maintains a list of customer email adresses that belong a particular discussion group mail adress. Whenever a Mail is sent to e.g. specialinterestdiscussion(at)mydomain.com, the mail will automatically be forwarded to all customers that belong to that list. If the sender is part of that mailling-list it will not be forwarded to him again. The sender does not necessarily have to be part of the maintained list.
So basically it is a simle mailing list.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
实际上有一种方法 - 通过集成在站点上运行的插件在后台刷新并检查邮件。
我可以推荐Mailster,这是一个免费且Joomla 的开源邮件列表组件。 从功能列表来看,它完全可以完成您需要它完成的工作:
我在自己的网页上使用 Mailster 并使用 GMail 帐户,并且它就像一个魅力。
Actually there is a way - by integrating a Plugin that runs on site refreshes in the background and checks for mails.
I can recommend Mailster which is a free and Open Source mailing list component for Joomla. It does exactly the job you need it to do, from the feature list:
I am using Mailster on my own webpage with a GMail account and it works like a charm.
我自己还没有找到一个好的完全集成的解决方案,但是您可以搜索一个基本的 MailMan 集成。
I have not found a good fully integrated solution for this myself, but there is a basic MailMan integration that you could search for.
由于 Joomla 是一个基于 php 的引擎,这根本不可能。 Joomla 本身无法在后台运行邮件列表所需的服务。
Since Joomla is a php based engine it is simply not not possible. Joomla itself can not run a service in the background which would be required for a mailing list.
我同意,Joomla本身不能在后台运行服务。
但是像 Mailster 或 LazyBackup2 这样的插件的工作方式可以实现类似服务的行为。 如果您的网站没有足够的访问量,您就必须解决这个问题。 例如,通过使用 cron 作业,每隔 X 分钟通过 wget 打开网页。
我刚刚开始使用 Mailster 并就同样的问题联系了开发人员,他回复了 cron job 建议,并表示他计划为 cronjobs 添加特定的 PHP 文件。 当这一切准备就绪时,您甚至不再需要该插件,同时仍然能够管理 Joomla 内的所有内容。
I agree, Joomla itself can not run a service in the background.
But the way plugins like Mailster or LazyBackup2 work enables a service-like behavior. If your site has not enough visits you have to take care of that. E.g. by using a cron job that simply opens the webpage via wget every X minutes.
I just started to use Mailster and contacted the developer regarding the same question and he responded with the cron job advice and also said that he plans to add a specific PHP file for cronjobs. When this will be ready you don't even need to have the plugin anymore while still being able to manage everything inside Joomla.