How to send an email from PHPmyAdmin?
I want to sent email on DB field changes..开发者_运维百科.
Can anyone please let me know how can I do it in PHPmyAdmin?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
精彩评论