How can i send a HTML file to mail account.

Answers were Sorted based on User's Feedback



How can i send a HTML file to mail account...

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

How can i send a HTML file to mail account...

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

Post New Answer

More PHP Interview Questions

How cookies are trported from browsers to servers?

0 Answers  


Define anonymous classes in php7?

0 Answers  


How to convert any type of video formate in flv formate in php can any buddy give me coding.

1 Answers  


how to uploade video in php????

1 Answers  


What does php exit do?

0 Answers  






What is the use of curl()?

0 Answers  


What is an array in php?

0 Answers  


what is the scope of php in the future if any other language is developed then may be php is loss ???

1 Answers   ATI,


what is code for email sending through localhost pc..?

2 Answers  


how much a fresher php programmer can earn in india

5 Answers  


hi here one small project given to me in an software company during interview. one page that would count down till 9pm (today means every day before 9pm it would count down to zero) this means there will show how many mins. sec. and hours are left till 9pm so it would be like 1 hr 20 mins 23 sec. then it up count down every sec and then show 1hr 20mins 22sec left till 9pm once the count down reaches zero it would show a flesh player video will autostart. the flash player will be from http://www.longtailvideo.com/players/jw-flv-player/ (the player is embed into the page.) that same page will track to see if they have already seen the video using php sessions then if they go back to that page it would redirect them to a new page saying that they have already wathed the video.

1 Answers  


Is laravel an oop?

0 Answers  


Categories