如何在没有HTML表单的情况下将图像附加到邮件功能

时间:2015-11-30 19:20:10

标签: php

我有一个像这样的非常简单的代码

<?php
$to = "somobe@yahoo.ca";
$subject = "I am sending an image";
$txt = "Get the Image";
$headers = "From: someone else";

mail($to,$subject,$txt,$headers);
?>
你可以告诉我如何附上图片吗?例如,假设我在img文件夹中有一个名为test.png

的图像

由于

2 个答案:

答案 0 :(得分:2)

使用PHPmailer脚本,是更好的方法,wp_mail更容易,但这是另一个主题,这里有一个帖子可以解决你的问题。

Send attachments with PHP Mail()?

使用wp_mail就像这样简单:

function foo()
{
    $("[name]").each(function(idx, dom)
    {
        dom.id = dom.name;
    });
} 

答案 1 :(得分:-1)

您必须通过http

请求图片
<img src="http://www.yourdomain.com/img/test.png">