How can i send a HTML file to mail account.
Answers were Sorted based on User's Feedback
Answer / 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 |
Answer / sheetal deshpande
to send html file to mail account you have to change
content type of mail funciton header to 'Content-type:
text/html; charset=iso-8859-1' and then in body you can
write html code and submit to mail.
| Is This Answer Correct ? | 2 Yes | 1 No |
How do you count numbers in php?
How do I find out the number of parameters passed into function9?
how to run PHP in command line?
8 Answers InfoShore, Ramp Green, Xtreeme,
What is empty () in php?
What is http php?
What is use of htmlspecialchars php?
In php how can you jump in to and out of "php mode"?
How can you send email in php?
How To Get the Uploaded File Information in the Receiving Script?
what is mean by portal
How can you "tell" MySQL server to cache a query?
What are the ways we can destroy a session variable ?