Free Php Scripts, Articles and Resources
    home  Home   php  PHPscripts   articles  Articles   contact  Contact
Date: 13 March 2010
in

Total scripts: 203
Total downloads: 25548
Total articles: 11

Latest Scripts
Free Contact Us Script +...
Free PHP ODP Script

Top Downloaded Scripts
Captcha Security Images
dGallery

Best Rated Scripts
File Searcher
Transparent Watermark

CATEGORIES

PHP ARTICLES

<< All Php Articles



Related Resources

646-204 and 70-649 professionals are known for their expertise and proficiency in 642-812 as well as 70-431 and 350-030. In fact even though they have not done 220-602, their command on the subject is commendable.

 
How to send html mail in php
 
     

The following code can be used to send html emails using php:

 

/** define email fields **/
$email_text   = "<strong>Hello</b> <br /> This is an email in html format.";
$subject        = "Email subject";
$from_name  = "John Smith";
$from_email  = "john_smith@sender-email-address.com";
$to_email      = "abcde@receiver-email-address.com";

/** construct headers **/
$headers  = "From: $from_name <$from_email>\r\n";
$headers .= "Content-type: text/html\r\n";

/** send the email **/
if (mail($to_email, $subject, $email_text, $headers)) {
    echo "Html mail sent successfully.";        
} else {
    echo "Error";
}
 

 
<< All Php Articles