Quest to send email from PHP
Singapore PHP User Group Meetup - May 2016
Kai Hendry
Kai Hendry
How to best send "transactional" emails from a PHP application?
But were they?
How do we integrate?
SMTP or... Web services?
SMTP is > 3s
# php index.php
(
[MessageId] => 01010154b8cc7867-26380800-a956-46a6-8066-8d1212237673-000000
[RequestId] => c69fb51a-1b44-11e6-9e96-b13478510368
)Wish: this could be integrated into mail()
And on the browser!
fetch("https://feedback.dabase.com/feedback/feedback.php", { method: "POST", body: formData }).then(function (res) {
if (res.ok) {
console.log(res);
} else {
console.log("error", res);
}