All Entries Tagged With: "mail"
Simple Mail From PHP
Simple Email Program <?php $to = ‘nobody@example.com’; $subject = ‘the subject’; $message = ‘hello’; $headers = ‘From: webmaster@example.com’ . “\r\n” . ‘Reply-To: webmaster@example.com’ . “\r\n” . ‘X-Mailer: PHP/’ . phpversion(); mail($to, $subject, $message, $headers); ?> Email With MIME Content <?php // multiple recipients $to = ‘aidan@example.com’ . ‘, ‘; // note the comma $to .= [...]
R Arun Raj | Aug 03, 2008 | Comments 1



