Previously I've discussed sending a simple eMail with PHP. At its heart, the PHP mail()
function requires just three arguments:
Sending A Simple eMail With PHP
For low-traffic websites, it is reasonable to be informed by eMail when a site’s form is submitted. In principle, sending eMail with PHP couldn’t be simpler: it is a single function, mail
, that has just three required arguments: to
, subject
and message
.