添付ファイル付きのHTMLメールを送信するPHPスクリプトがあります。しかし、添付ファイルを電子メール本文の<img>
タグで表示することはできません。添付ファイルはpostcard.png
、サーバー上の元のファイル名は4e60348f83f2f.png
です。画像URLにさまざまなものを指定してみました:cid:postcard.png
、cid:4e60348f83f2f.png
、postcard.png
、4e60348f83f2f.png
何も動作しません。PHPでインライン添付画像付きのHTMLメールを送信する方法
:
Content-Transfer-Encoding: base64
Content-Disposition: attachment;
filename="$fname" // i.e.: "postcard.png"
私はそれを使用するように変更してみましたCIDは、私は実際にそれを行う方法がわからない、とすべてで、このdidntの」作品:ここ
Content-Transfer-Encoding: base64
Content-ID: <$fname> // i.e.: postcard.png
は完全なコードです。(それは、PHP mail()
ページ内のコメントからthis codeに基づいています。)
<?php
$to = "[email protected]";
$email = "[email protected]";
$name = "Namename";
$subject = "An inline image!";
$comment = "Llookout <b>Llary</b> it's <br> the <b>Ll</b>andllord!<br><img src='cid:postcard.png'><br><img src='cid:4e60348f83f2f.png'><img src='postcard.png'><br><img src='4e60348f83f2f.png'>";
$To = strip_tags($to);
$TextMessage =strip_tags(nl2br($comment),"<br>");
$HTMLMessage =nl2br($comment);
$FromName =strip_tags($name);
$FromEmail =strip_tags($email);
$Subject =strip_tags($subject);
$boundary1 =rand(0,9)."-"
.rand(10000000000,9999999999)."-"
.rand(10000000000,9999999999)."=:"
.rand(10000,99999);
$boundary2 =rand(0,9)."-".rand(10000000000,9999999999)."-"
.rand(10000000000,9999999999)."=:"
.rand(10000,99999);
$filename1 = "4e60348f83f2f.png"; //name of file on server with script
$handle =fopen($filename1, 'rb');
$f_contents =fread($handle, filesize($filename1));
$attachment=chunk_split(base64_encode($f_contents));
fclose($handle);
$ftype ="image/png";
$fname ="postcard.png"; //what the file will be named
$attachments='';
$Headers =<<<AKAM
From: $FromName <$FromEmail>
Reply-To: $FromEmail
MIME-Version: 1.0
Content-Type: multipart/mixed;
boundary="$boundary1"
AKAM;
$attachments.=<<<ATTA
--$boundary1
Content-Type: $ftype;
name="$fname"
Content-Transfer-Encoding: base64
Content-Disposition: attachment;
filename="$fname"
$attachment
ATTA;
$Body =<<<AKAM
This is a multi-part message in MIME format.
--$boundary1
Content-Type: multipart/alternative;
boundary="$boundary2"
--$boundary2
Content-Type: text/plain;
charset="windows-1256"
Content-Transfer-Encoding: quoted-printable
$TextMessage
--$boundary2
Content-Type: text/html;
charset="windows-1256"
Content-Transfer-Encoding: quoted-printable
$HTMLMessage
--$boundary2--
$attachments
--$boundary1--
AKAM;
// Send email
$ok=mail($To, $Subject, $Body, $Headers);
echo $ok?"<h1> Mail sent!</h1>":"<h1> Mail not sent!</h1>";
?>
[PHPMailer](http://phpmailer.worxware.com)または[Swiftmailer](http://swiftmailer.org)を使用してください。どちらも、最初からMIMEメッセージを作成するのとは違って、まったく痛みのないインライン添付を可能にします。 –
手で行うことは不可能ではありませんが、SwiftmailerやPHPMailerを使用する方が面倒なことはありません。 - [PHPMailerで電子メールを送信 - ボディに画像を埋め込む]の可能な複製(http://stackoverflow.com/questions/3708153/send-email-with-phpmailer-embed-image-in-body) – mario
@Marc B:私は気にしない、PHPMailerで一度入力したハングを引っ張ってしまった。 –