category      articles    
 
Adsense
Adwords
Article
Blog
CMS
CSS Style
Datacenter
Design Graphics
Flash Animation
Internet Radio
Messenger
Programming
Provider
Search Engine
Security
Security Web
SEF
SEO
Software
Software Web
Sendmail using PHP

Sometimes, when we want to send an email from php programing, we find some difficulties. So, i tried to find the best way and easy to learn.
Sendmail structures is like below (if you want to send an email like html page):
$headers = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
$headers .= 'From: '.$from.' <'.$emailfrom.'>' . "\r\n";
$headers .= 'Cc: '.$emailfrom.''. "\r\n";
mail($to, $subject, $message, $headers);

Where $to is the email recipient.
$subject is the email subject.
$message is the email message
$header has define above.
For more complex sendmail, you can set an automated email, that will be delivered on one date.

OTHER ARTICLES

Count how many days

eSankey

BS2000Account directive

AcceptFilter for Apache

htaccess Useful

AllowOverride directive for Apache

AuthDigestRealmSeed directive for Apache

AuthAuthoritative directive

PHP and MySQL

AddDefaultCharset directive for Apache