3

我的三个担忧,尝试了不同的组合但没有结果,谷歌搜索但很少或没有帮助 -

  1. 我收到了两次电子邮件,更改myemail@emailserver.com为电子邮件 ID 以查看结果。
  2. 在执行此文件时,我正在获取图像,但是我想要文本“已发送电子邮件”。
  3. 传递带有标签的完整 HTML 内容,而不是电子邮件中的 HTML 呈现。

我的工作代码 -->

<?php
    header('Content-type: image/jpeg');
    $jpg_image = imagecreatefromjpeg('http://dummyimage.com/600x400/f5f5f5/fff.jpg');
    $black = imagecolorallocate($jpg_image, 1, 1, 1);
    $font_path = 'myfont/arial.ttf';
    $text = "Swapnesh Sinha!";
    imagettftext($jpg_image, 24, 0, 175, 85, $black, $font_path, $text);
    $tip = imagejpeg($jpg_image);
    $imageData = base64_encode($tip);
    //$src = 'data: '.mime_content_type($jpg_image).';base64,'.$imageData;
    imagedestroy($jpg_image);
?>

<html>
<head></head>
<body>
<p>

<?php

$to = 'myemail@emailserver.com';
$subject = "Thisa is a email test to find image work";
$message = '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>MY SITE TITLE</title>
</head><body><table><tr><td>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</td></tr><tr><img src="'.'http://mysiteurl/addtext.php'.'" /></tr></table></body></html>';
$headers = 'From: myemail@emailserver.com' . "\r\n" .
           'Reply-To: myemail@emailserver.com' . "\r\n" .
           'X-Mailer: PHP/' . phpversion();

$bool = mail($to, $subject, $message, $headers);

if($bool)
echo "Email Sent"; 
else
echo "Email Not Sent";

?>

</body>
</html>

注意- 在<img src="'.'http://mysiteurl/addtext.php'.'" />

http://mysiteurl/addtext.php与我们拥有上述所有内容的情况相同。

4

1 回答 1

2

我要做的第一件事是检查您的 apache/IIS 日志以确保该 URL 没有被调用两次(只是一个健全性检查)。

如果您添加到 OP 的 PHP 页面是http://mysiteurl/addtext.php,那么它将被调用两次,一次渲染 HTML,然后浏览器将在渲染<img ...>标签时再次调用它。

要解决此问题,您需要将其拆分为两个 PHP 文件(推荐),或传递一个 GET 参数来切换图像处理。

您还需要添加$headers .= "Content-type: text/html\r\n";,以便将电子邮件呈现为 html 而不是纯文本。

于 2012-12-27T05:35:48.707 回答