我正在为我的网站构建电子邮件功能,并且正在使用 PHP 邮件功能。我遇到的问题是,当我尝试用邮件中的图像向客户发送电子邮件时,需要永远(20-45 分钟)才能到达他们那里,而当我只包含文本时,它会立即到达他们。有没有解决这个问题。谢谢你的帮助。
<?php
$email = $_COOKIE["email"];
$link = $_COOKIE["coupon"];
$to = $email;
$subject = 'Your ads';
$message = ' Hello This is Testing Email 3.0 Text & Image <a href="$link">Your Coupon Link</a>
<img src="$link" width="300" height="300"/> ';
$headers = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
$headers .= 'From: Ads <ads@advertising.com>' . "\r\n";
mail($email, $subject, $message, $headers);
?>