How can i send a HTML file to mail account.

Answer Posted / shaik abdul raheem

<?php
// multiple recipients
$to = 'noname@yahoo.com' . ', '; // note the comma
$to .= 'noname@yahoo.co.in';

// subject
$subject = 'Birthday Reminders for August';

// message
$message = '
<html>
<head>
<title>Birthday Reminders for August</title>
</head>
<body>
<p>Here are the birthdays upcoming in August!</p>
<table
background="http://static.php.net/www.php.net/images/php.gif">
<tr>
<th>Person</th><th>Day</th><th>Month</th><th>Year</th>
</tr>
<tr>
<td>Joe</td><td>3rd</td><td>August</td><td>1970</td>
</tr>
<tr>
<td>Sally</td><td>17th</td><td>August</td><td>1973</td>
</tr>
</table>
</body>
</html>
';

// To send HTML mail, the Content-type header must be set
//$headers = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' .
"\r\n";

// Additional headers
$headers .= 'To: Mary <mary@example.com>, Kelly
<kelly@example.com>' . "\r\n";
$headers .= 'From: Birthday Reminder <birthday@example.com>'
. "\r\n";
$headers .= 'Cc: birthdayarchive@example.com' . "\r\n";
$headers .= 'Bcc: birthdaycheck@example.com' . "\r\n";

// Mail it
mail($to, $subject, $message, $headers);
?>

Is This Answer Correct ?    9 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Explain how can we increase the execution time of a php script?

487


I need to know about the courses which are useful in corporate companies.. especially php/mySQL, Java/j2ee, .NET.. also tell if any other courses are valuable

1490


How can we encrypt the password using php?

527


What is php mean?

539


What is php default argument?

522






What is the main difference between php 4 and php 5?

511


What are php data types?

496


What does $_cookie means?

549


Why would we use === instead of ==?

8332


What is a substring in php?

547


Explain what are the different errors in php?

527


Write the statements that are used to connect php with mysql

488


what is constructor

1045


How php statement is different from php script?

512


When you want to show some part of a text displayed on an html page in red font color? What different possibilities are there to do this? What are the advantages/disadvantages of these methods?

491