Cryptonit
Guest
проблемы с аттачем картинки
При отправте аттачей - картинок вместо них выдаются символы закодированной base64 картинки. (the bat)
При отправте аттачей - картинок вместо них выдаются символы закодированной base64 картинки. (the bat)
PHP:
<?php
$xsubject='test';
$to="[email protected]";
$fileatt="Demon.jpg";
$file = fopen($fileatt,'rb');
$data = fread($file,filesize($fileatt));
fclose($file);
$data = chunk_split(base64_encode($data));
$zmes=
"
From: x
Subject: x
MIME-Version: 1.0
Content-Type: image/jpeg; \n
name=\"Demon.jpg\";
Content-Transfer-Encoding: base64 \n\n
".$data;
mail($to,$xsubject,$zmes);