在 WordPress 中发布帖子时向用户发送电子邮件
我有一个前端发布表单,注册用户可以在其中起草帖子。我有一个元字段,其中包含起草内容的用户的电子邮件。现在,当我从后端发布内容时,我想向用户发送一封电子邮件,通知该帖子已发布。
任何类型的研究方向都会有所帮助。
谢谢!
I have a front end posting form where registered users can draft post. I have a meta field which contains email of the user who draft the content. Now when i publish the content from backend i want to send a email to user notifying that the post is published.
Any kinds of direction to the research will help.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
这是免费的 WordPress 插件
http://wordpress.org/extend/plugins/publish-post-email-通知/
Here is free wordpress plugin for that
http://wordpress.org/extend/plugins/publish-post-email-notification/
PHP 的邮件功能 应该是一个很好的起点。请记住确保您的 php.ini 设置正确以发送邮件。
PHP's mail function should be a good starting point. Remember to make sure your php.ini is set up correctly to send mail.
以下教程介绍如何向您的 WordPress 发送新帖子通知用户使用 MailOptin 插件。
该插件的工作原理是挂钩publish_post挂钩,然后使用标准的wp_mail函数来发送电子邮件。
您还可以选择仅发送给属于某个用户角色的用户。如果您希望将电子邮件发送给部分会员用户,这会派上用场。
您可以在 WordPress 仪表板中免费获取 MailOptin 插件 https://wordpress.org/plugins/mailoptin/< /a>
Here's a tutorial on how to send new post notification to your WordPress users using MailOptin plugin.
The plugin work by hooking into publish_post hook and then using the standard wp_mail function to deliver the email.
You also have the option to send only to users belonging to a user role. This can come in handy if you wish to deliver the email to segment of your membership users.
You can get the MailOptin plugin for free in WordPress dashboard at https://wordpress.org/plugins/mailoptin/