如何使用php邮件附加图像文件

时间:2014-01-22 05:36:42

标签: php email

Hoi大家,我是php编程的新手。我只是想问你们一些关于如何使用php mail()函数附加图像文件的帮助。我已经尝试过html / text,它效果很好,它会发送到我的电子邮箱。但问题是我将内容类型更改为image / jpg。它不起作用。我现在需要的是一种在php mail()中附加图像文件而不使用任何php库的方法。谢谢。

1 个答案:

答案 0 :(得分:1)

<?php
$to = 'test@gmail.com';
$subject = 'test subject';
$message = 'this is <strong>html</strong> <img src="http://www.test.com/image.test.png" >       message';
$headers  = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
mail($to, $subject, $message, $headers);
?>

试试这个。 提供位于服务器上的精确图像路径。