Archive

Archive for April, 2007

Sending e-mail from PHP using mail()

April 11th, 2007

A very simple tutorial to send an e-mail directly from a PHP script using the built-in mail() function. Great for processing forms or just to debug an application.
For sending more advanced e-mail, including HTML, we recommend the PHPMailer class, however, for sending a basic e-mail the easy way, we use this simple function provided by PHP.
The [...]

PHP/MySQL Programming