[PHP] mail()

mail() [PHP] - PHP - Programmation

Marsh Posté le 17-06-2002 à 14:25:11    

:hello:  
 
comment envoyer un mail en format HTML avec mail() ?
 
si vous avez des explications ou des liens... passke là... je nage...

Reply

Marsh Posté le 17-06-2002 à 14:25:11   

Reply

Marsh Posté le 17-06-2002 à 14:28:23    

$to  = "Mary <regrgr@trancarea.com>" ; //note the comma
 
 
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>
 <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, you can set the Content-type header.
$headers  = "MIME-Version: 1.0\r\n";
$headers .= "Content-type: text/html; charset=iso-8859-1\r\n";
 
 additional headers
$headers .= "From: Birthday Reminder <birthday@example.com>\r\n";
 
$headers .= "Cc: birthdayarchive@example.com\r\n";
$headers .= "Bcc: birthdaycheck@example.com\r\n";
 
 and now mail it
mail($to, $subject, $message, $headers);


Message édité par skylight le 17-06-2002 à 14:28:45
Reply

Marsh Posté le 17-06-2002 à 14:29:43    

Reply

Marsh Posté le 17-06-2002 à 14:37:54    

ok merçi
mais bon, je comprends pas, j'ai fais plusieurs scripts dans le même genre, mais ça marche pô.

Reply

Marsh Posté le 17-06-2002 à 15:18:05    

http://www.zend.com/zend/spotlight [...] p#Heading5
 
g trouvé, tout est expliqué içi.

Reply

Sujets relatifs:

Leave a Replay

Make sure you enter the(*)required information where indicate.HTML code is not allowed