PHP তে ইমেইলিং : PHPMailer প্যাকেজ ব্যাবহার করুনঃ

PHP তে ইমেইলিং : PHPMailer প্যাকেজ ব্যাবহার করুনঃ

M A Razzak

PHP তে ইমেইলিং : PHPMailer প্যাকেজ ব্যাবহার করুনঃ
• নিচের লিঙ্ক থেকে PHPMailer প্যাকেজ ডাউনলোড করুনঃ http://sourceforge.net/project/showfiles.php?group_id=26031
• আনজিপ করে ইনস্টল করুন।
• ক্লাস এ "class.smtp.php" যা একটি প্রেরণ পদ্ধতি, ইমেইল পাঠানোর জন্য এটি ব্যবহার করা যেতে পারে।
• PHPMailer মেইলিং এর বিভিন্ন পদ্ধতি প্রদান করে যেমন- ডিফল্ট পিএইচপি মেইল ফাংশন [সীমিত ক্ষমতা] , একটি SMTP সার্ভার ব্যবহার করে [অথেন্টিকেশন সহ বা অথেন্টিকেশন ছাড়াই], Sendmail সফ্টওয়্যার ব্যবহার করে।
• পিএইচপি mailer ফাইল সংযুক্ত করতে পারে এবং এইচটিএমএল ইমেল পাঠাতে পারে।
• ক্লাস "class.smtp.php" এ আপনি একটি ফাংশন তৈরি করতে পারেন যা ইমেইল পাঠাতে সেন্ড পদ্ধতি ব্যবহার করতে পারে। আপনার পদ্ধতি মেইলিং প্যারামিটার সেট করার জন্য একটি প্যারামিটার গ্রহণ করতে পারেন। কলারস প্যারামিটার সরবরাহ করবে।
• একটি নমুনা পদ্ধতি নিম্নরূপ হতে পারে:

public function prepareAndSendMail($fields){

date_default_timezone_set('America/Toronto');

$this->IsSMTP();
$this->IsHTML(true); // send as HTML
$this->SMTPAuth = true; // enable SMTP authentication
$this->SMTPSecure = "ssl"; // sets the prefix to the servier
$this->Host = "SMTP server address"; // set SMTP server
$this->Port = port usually 25 or 465;// set the SMTP port

$this->Username = "user name for smtp server"; // smtp server username
$this->Password = "user password"; // smtp server password

$this->AddReplyTo("reply to email address","");

$this->From = "email address to send from";
$this->FromName = "sender's name";

$this->Subject = "subject of the email";

//$this->Body = "Hi, This is the HTML BODY";
$this->AltBody = $fields["altBody"]; //non-html body
$this->WordWrap = 50; // set word wrap

$this->MsgHTML($fields["body"]);

$this->AddAddress($fields["to"]);
$this->AddAttachment($fields["attachment"]); // attachment

if(!$this->Send()) {
echo "Mailer Error: " . $this->ErrorInfo;
} else {
echo "Message sent!";
}
}

Written from:
http://salearningschool.com/displayArticle.php?table=Articles&articleID=1014

Permanent link to this article: http://bangla.sitestree.com/php-%e0%a6%a4%e0%a7%87-%e0%a6%87%e0%a6%ae%e0%a7%87%e0%a6%87%e0%a6%b2%e0%a6%bf%e0%a6%82-phpmailer-%e0%a6%aa%e0%a7%8d%e0%a6%af%e0%a6%be%e0%a6%95%e0%a7%87%e0%a6%9c-%e0%a6%ac%e0%a7%8d%e0%a6%af%e0%a6%be/