Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- /* The HTML email template */
- $template =
- '
- <html>
- <body>
- <p>Hello, %%name%%</p>
- </body>
- </html>
- ';
- /* For each recipient, customize the template */
- $rcptTemplate = str_replace('%%name%%', $name, $template);
- /* Send the email */
- $mail->isHTML(TRUE);
- $mail->Body = $rcptTemplate;
- $mail->send();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement