如何从 PHPmyAdmin 发送电子邮件?
我想发送有关数据库字段更改的电子邮件...
谁能告诉我如何在 PHPmyAdmin 中做到这一点?
I want to sent email on DB field changes...
Can anyone please let me know how can I do it in PHPmyAdmin?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
phpMyAdmin 只是 MySQL 的 Web 管理前端。您可能可以编写一个 存储过程 和使用 trigger 注册它,它将发送通知行变化。
在我看来,这应该在您的应用程序逻辑而不是数据库中完成。
另请参阅如何从 MySQL 5.1 发送电子邮件
phpMyAdmin is just a web administration frontend for MySQL. You could probably write a stored procedure and register it with a trigger which will send the notification of a row change.
In my opinion this should be done in your application logic rather than the database.
Also see How to send email from MySQL 5.1