Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- // Destinatari multipli
- // Subiectul
- $subject = 'Birthday Reminders for August';
- // Mesajul
- $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>
- ';
- // Pentru a trimite mesaje HTML, trebuie stabilit antetul Content-type
- $headers = 'MIME-Version: 1.0' . "\r\n";
- $headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
- // Antete suplimentare
- // Trimiterea mesajului
- mail($to, $subject, $message, $headers);
- ?>
Advertisement
Add Comment
Please, Sign In to add comment