-1

经过 3 周的搜索,我找到了这个很好的答案 >>>如何用链接替换纯 URL?

但我不知道如何将它与 phpmailer 一起使用 ..

我正在使用 html 表单将信息发送到电子邮件。某些电子邮件服务无法将 url 视为链接。我需要做什么,我是phpmailer的新手。

我希望这个网站是寻求答案的最佳场所。非常感谢你。

4

1 回答 1

0

用你制作的类扩展 phpmailer

<?php

CLASS url_free_phpmailer EXTENDS phpmailer {

   /**
    * Replaces urls before sending
    *
    */
   public function Send() {
      $this->Body = replace_urls($this->Body);
      return call_user_func_array('parent::'.__FUNCTION__, func_get_args());
   }


}

要不就

<?php

require("class.phpmailer.php");

$mail = new PHPMailer();

$mail->From     = "from@example.com";
$mail->AddAddress("myfriend@example.net");

$mail->Subject  = "First PHPMailer Message";

# replace urls before setting
$mail->Body     = replace_urls($body);

$mail->WordWrap = 50;

if(!$mail->Send()) {
  echo 'Message was not sent.';
  echo 'Mailer error: ' . $mail->ErrorInfo;
} else {
  echo 'Message has been sent.';
}
?>
于 2013-09-02T12:07:47.727 回答