Send HTML in email via PHP

后端 未结 8 2218
时光说笑
时光说笑 2020-11-22 03:13

How can I send an HTML-formatted email with pictures using PHP?

I want to have a page with some settings and HTML output which is sent via email to an address. What

8条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-11-22 03:15

    Use PHPMailer,

    To send HTML mail you have to set $mail->isHTML() only, and you can set your body with HTML tags

    Here is a well written tutorial :

    rohitashv.wordpress.com/2013/01/19/how-to-send-mail-using-php/

提交回复
热议问题