PDA

View Full Version : آموزش: ارسال ایمیل با محتوای متن_html_ضمیمه



djsaeedkhan
یک شنبه 25 دی 1390, 23:43 عصر
با سلام خدمت دوستان

در ابتدا:
ارسال یک متن ساده ی ساده با ایمیل

<?php
//define the receiver of the email
$to = 'youraddress@example.com';
//define the subject of the email
$subject = 'Test email';
//define the message to be sent. Each line should be separated with \n
$message = "Hello World!\n\nThis is my first mail.";
//define the headers we want passed. Note that they are separated with \r\n
$headers = "From: webmaster@example.com\r\nReply-To: webmaster@example.com";
//send the email
$mail_sent = @mail( $to, $subject, $message, $headers );
//if the message is sent successfully print "Mail sent". Otherwise print "Mail failed"
echo $mail_sent ? "Mail sent" : "Mail failed";
?>

djsaeedkhan
یک شنبه 25 دی 1390, 23:45 عصر
ارسال یک ایمیل با کد های html

<?php
//define the receiver of the email
$to = 'youraddress@example.com';
//define the subject of the email
$subject = 'Test HTML email';
//create a boundary string. It must be unique
//so we use the MD5 algorithm to generate a random hash
$random_hash = md5(date('r', time()));
//define the headers we want passed. Note that they are separated with \r\n
$headers = "From: webmaster@example.com\r\nReply-To: webmaster@example.com";
//add boundary string and mime type specification
$headers .= "\r\nContent-Type: multipart/alternative; boundary=\"PHP-alt-".$random_hash."\"";
//define the body of the message.
ob_start(); //Turn on output buffering
?>
--PHP-alt-<?php echo $random_hash; ?>
Content-Type: text/plain; charset="iso-8859-1"
Content-Transfer-Encoding: 7bit

Hello World!!!
This is simple text email message.

--PHP-alt-<?php echo $random_hash; ?>
Content-Type: text/html; charset="iso-8859-1"
Content-Transfer-Encoding: 7bit

<h2>Hello World!</h2>
<p>This is something with <b>HTML</b> formatting.</p>

--PHP-alt-<?php echo $random_hash; ?>--
<?
//copy current buffer contents into $message variable and delete current output buffer
$message = ob_get_clean();
//send the email
$mail_sent = @mail( $to, $subject, $message, $headers );
//if the message is sent successfully print "Mail sent". Otherwise print "Mail failed"
echo $mail_sent ? "Mail sent" : "Mail failed";
?>

djsaeedkhan
یک شنبه 25 دی 1390, 23:45 عصر
ارسال یک ایمیل که ضمیمه هم داشته باشه

<?php
//define the receiver of the email
$to = 'youraddress@example.com';
//define the subject of the email
$subject = 'Test email with attachment';
//create a boundary string. It must be unique
//so we use the MD5 algorithm to generate a random hash
$random_hash = md5(date('r', time()));
//define the headers we want passed. Note that they are separated with \r\n
$headers = "From: webmaster@example.com\r\nReply-To: webmaster@example.com";
//add boundary string and mime type specification
$headers .= "\r\nContent-Type: multipart/mixed; boundary=\"PHP-mixed-".$random_hash."\"";
//read the atachment file contents into a string,
//encode it with MIME base64,
//and split it into smaller chunks
$attachment = chunk_split(base64_encode(file_get_contents('attac hment.zip')));
//define the body of the message.
ob_start(); //Turn on output buffering
?>
--PHP-mixed-<?php echo $random_hash; ?>
Content-Type: multipart/alternative; boundary="PHP-alt-<?php echo $random_hash; ?>"

--PHP-alt-<?php echo $random_hash; ?>
Content-Type: text/plain; charset="iso-8859-1"
Content-Transfer-Encoding: 7bit

Hello World!!!
This is simple text email message.

--PHP-alt-<?php echo $random_hash; ?>
Content-Type: text/html; charset="iso-8859-1"
Content-Transfer-Encoding: 7bit

<h2>Hello World!</h2>
<p>This is something with <b>HTML</b> formatting.</p>

--PHP-alt-<?php echo $random_hash; ?>--

--PHP-mixed-<?php echo $random_hash; ?>
Content-Type: application/zip; name="attachment.zip"
Content-Transfer-Encoding: base64
Content-Disposition: attachment

<?php echo $attachment; ?>
--PHP-mixed-<?php echo $random_hash; ?>--

<?php
//copy current buffer contents into $message variable and delete current output buffer
$message = ob_get_clean();
//send the email
$mail_sent = @mail( $to, $subject, $message, $headers );
//if the message is sent successfully print "Mail sent". Otherwise print "Mail failed"
echo $mail_sent ? "Mail sent" : "Mail failed";
?>

djsaeedkhan
دوشنبه 03 بهمن 1390, 08:39 صبح
سلام
کسی مشکلی در این زمینه نداره

nader3
شنبه 20 خرداد 1391, 12:52 عصر
یا تشکر از
djsaeedkhan (http://barnamenevis.org/member.php?85555-djsaeedkhan)
ببخشید الان تو سورس ایمیلتون استاندارد های ایمیل انبوه رعایت شده؟ من میخوام استاندارد های مربوط به ایمیل انبوه و بدونم که اسپم نشه، از کجا پیدا کنم؟

http://barnamenevis.org/images/statusicon/user-offline.png

djsaeedkhan
شنبه 20 خرداد 1391, 13:23 عصر
سلام
تو گوگل سرچ کنید می تونید پیدا کنید.
http://barnamenevis.org/showthread.php?165920-%D8%A7%D8%B1%D8%B3%D8%A7%D9%84-%D8%A7%D9%8A%D9%85%D9%8A%D9%84-%D8%A8%D8%AF%D9%88%D9%86-%D8%A7%D8%B3%D9%BE%D9%85-%D8%B4%D8%AF%D9%86
http://www.google.com/#sclient=psy-ab&hl=en&q=php+send+html+mail+%2Bno+spam&oq=php+send+html+mail+%2Bno+spam&aq=f&aqi=&aql=&gs_l=hp.3...698.4060.4.4332.9.9.0.0.0.0.1815.5208. 6-4j0j1.5.0...0.0.wIXTMQoAQpM&pbx=1&bav=on.2,or.r_gc.r_pw.,cf.osb&fp=1e1ee5522b2271ca&biw=1366&bih=646