MySQL Rocks
MySQL Rocks

Reputation: 101

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?

Upvotes: 0

Views: 15982

Answers (1)

joschi
joschi

Reputation: 13101

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

Upvotes: 2

Related Questions