Full-service Internet Marketing & Web Development
Recent Posts

Sponsors
![]() |
Sending Mial via SendmailCode Wizard, 12-30-2006 |
This script uses pipes via Linux, FreeBSD, etc. to send mail useing /usr/sbin/sendmail/ instead of the internal php mail() function.
<?
// gotten from PHP.net
// VERY USEFUL!
// sends mail via sendmail
$sendmailLocale = "/usr/sbin/sendmail -t -i";
$mailerFrom = "andrew@evilwalrus.com";
$mailer = popen($sendmailLocale,"w");
fwrite ($mailer,"Subject: $subject
From: $mailerFrom
To: $to
$body");
pclose($mailer);
?>
|
|
Subscribe Now to receive new posts via Email as soon as they come out.
Comments
Post your comments

