0

早上好,

我正在为我的电子邮件创建一个跟踪像素,该像素使用 PHP 向服务器添加记录。

我想让这个 PHP 文件创建一个 HTML 段落,该段落将显示给电子邮件接收者。

我的问题是:当我的 PHP 设置为图像源时,我该怎么做?

我的 HTML 文件如下所示:

<!-- THERE IS WHERE I CALL THE PHP FILE -->

<img src="http://example.com/file.php">

<!-- I want that the PHP file creates a new paragraph here -->

我的 PHP 文件如下所示:

<!-- THIS GENERATES A 1*1 PIXEL (copied from StackOverflow) -->

  $im=imagecreate(1,1);

  $white=imagecolorallocate($im,255,255,255);

  imagesetpixel($im,1,1,$white);

  header("content-type:image/jpg");

  imagejpeg($im);

  imagedestroy($im);

<!-- AND HERE I WANT TO CREATE AN HTML PARAGRAPH WITH SOME TEXT -->

我不知道这是否可能,我非常感谢你的帮助,

非常感谢,

MK。

4

0 回答 0