how to send html mails using PEAR mail

后端 未结 3 1577
独厮守ぢ
独厮守ぢ 2020-12-05 04:44

I am using PEAR mail system to send authenticated mails.I need to send HTML mails that has alinks.It was working fine before i started using PEAR mail.Now i am not able to s

3条回答
  •  执笔经年
    2020-12-05 05:23

    What do your headers look like? Here are mine:

    $headers = array(
        'To' => $recipients,
        'From' => $adminEmail,
        'Subject' => $subject,
        'MIME-Version' => 1,
        'Content-type' => 'text/html;charset=iso-8859-1'
    );
    

提交回复
热议问题