Только это PHP, а у ильи Perl. :-)))))
Пашка
11 апреля 2005 г., 15:39:59, Виталий Жирицкий <vita***@u*****.net> wrote:
ВЖ> function SendMessHTML($from, $to, $subject, $letter, $attach_array,
ВЖ> $inner_array) {
ВЖ> $uid = strtoupper(md5(uniqid(time())));
ВЖ> $header = "From: $from\nReply-To: $from\n";
ВЖ> $header .= "Subject: $subject\n";
ВЖ> $header .= "MIME-Version: 1.0\n";
ВЖ> $header .= "Content-Type: multipart/mixed; boundary=\"$uid\"\n";
ВЖ> $message .= "--$uid\n";
ВЖ> $message .= "Content-Type: text/html\n";
ВЖ> $message .= "Content-Transfer-Encoding: 8bit\n\n";
ВЖ> $message .= stripslashes($letter)."\n\n";
ВЖ> for ($i=0; $i<count($inner_array); $i++) {
ВЖ> unset($inner_upload);
ВЖ> $f=fopen($inner_array[$i][2],"rb");
ВЖ> $inner_upload=fread($f,filesize($inner_array[$i][2]));
ВЖ> $inner_encoded=chunk_split(base64_encode($inner_upload));
ВЖ> $message .= "--$uid\n";
ВЖ> $message .= "Content-Type: ".$inner_array[$i][1].";
ВЖ> name=\"".$inner_array[$i][0]."\"\n";
ВЖ> $message .= "Content-Transfer-Encoding: base64\n";
ВЖ> $message .= "Content-Disposition: inline\n";
ВЖ> $message .= "Content-ID: ".$inner_array[$i][0]."\n\n";
ВЖ> $message .= "$inner_encoded\n";
ВЖ> }
ВЖ> for ($i=0; $i<count($attach_array); $i++) {
ВЖ> unset($attach_upload);
ВЖ> $f=fopen($attach_array[$i][2],"rb");
ВЖ> $attach_upload=fread($f,filesize($attach_array[$i][2]));
ВЖ> $attach_encoded=chunk_split(base64_encode($attach_upload));
ВЖ> $message .= "--$uid\n";
ВЖ> $message .= "Content-Type: \"".$attach_array[$i][1]."\";
ВЖ> name=\"".$attach_array[$i][0]."\"\n";
ВЖ> $message .= "Content-Transfer-Encoding: base64\n";
ВЖ> $message .= "Content-Disposition: attachment;
ВЖ> filename=\"".$attach_array[$i][0]."\"\n\n";
ВЖ> $message .= "$attach_encoded\n";
ВЖ> }
ВЖ> $message .= "--$uid--";
ВЖ> // $fd = fopen($uid.".msg","a"); fwrite($fd,
ВЖ> "$subject\n$header\n$message\n"); fclose($fd);
ВЖ> mail($to, $subject, $message, $header);
ВЖ> return true;
ВЖ> }
ВЖ> Original Message ВЖ> From: "Ilya Tatarnikov" <jackso***@r*****.com>
ВЖ> To: "inet.webbuild.webbuilding (4556343)" <vita***@u*****.net>
ВЖ> Sent: Sunday, April 10, 2005 7:32 AM
ВЖ> Subject: sendmail
>>У кого-нибудь есть дополнительная инфа о sendmail, какие есть
>> параметры, при запуске, как там указать скрытых получателей, обратный
>> адрес...
>> И что значит параметр -t?
>>
>> --
>> Ilya Tatarnikoff
>> mailto:webmast***@r*****.com
>> ICQ number: 317134899
>> PGP key ID: 0x18EA20AE
>>
>> Sunday, April 10, 2005 - 12:26:48 PM
>>
>>
>>
>>
>>
>> библиотекa сайтостроительства http://www.i2r.ru/static/244/
>>
>>
>>
ВЖ> Information from NOD32 ВЖ> This message was checked by NOD32 Antivirus System for Linux Mail Server.
ВЖ> http://www.nod32.com
ВЖ> библиотекa сайтостроительства http://www.i2r.ru/static/244/
библиотекa сайтостроительства http://www.i2r.ru/static/244/