drupal 用户电子邮件
您好,我想知道在 drupal 中发送新闻通讯的最佳方式是什么。我为每个注册用户实现了一个模块(用户页面)。如何将页面作为新闻通讯发送给该用户?
hi i want to know whats the best way for sending newsletter in drupal. And i implemented a module ( user page )for each registered user . how to send the page as newsletter to that user as newsletter?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
要在 drupal 中发送您自己的电子邮件,您需要实现 hook_mail() ,然后使用 drupal_mail() 调用它
To send your own emails in drupal you need to implement hook_mail() and then invoke this using drupal_mail()
我过去曾使用过 simplenews ,为了快速通过电子邮件发送时事通讯,我发现没有任何方法可以快速工作而且很容易。然而那是一年前的事了,所以自从我实施以来可能会有更多选择。
I have used simplenews in the past and for a quick way to email a newsletter nothing I found worked a quickly and easily. However that was a year ago, so there might be more options since I implemented that.