رادکام
<?php
use PHPMailer\PHPMailer\PHPMailer;
use PHPMailer\PHPMailer\Exception;
require '/home/user/public_html/PHPMailer/src/Exception.php';
require '/home/user/public_html/PHPMailer/src/PHPMailer.php';
require '/home/user/public_html/PHPMailer/src/SMTP.php';
$mail = new PHPMailer(true);
try {
//Server settings
$mail->SMTPDebug = 2; // Enable verbose debug output
$mail->isSMTP(); // Set mailer to use SMTP
$mail->Host = 'mail.host.ir'; // Specify main and backup SMTP servers
$mail->SMTPAuth = true; // Enable SMTP authentication
$mail->Username = 'test@host.ir'; // SMTP username
$mail->Password = '123456'; // SMTP password
//$mail->SMTPSecure = 'none'; // Enable TLS encryption, [ICODE]ssl[/ICODE] also accepted
$mail->SMTPSecure = false;
$mail->SMTPAutoTLS = false;
$mail->Port = 25; // TCP port to connect to
//Recipients
$mail->setFrom('test@host.ir', 'Mailer');
$mail->addAddress('test@radcom.co', 'Joe User'); // Add a recipient
// Attachments
// $mail->addAttachment('/home/user/public_html/attachment.txt'); // Add attachments
//$mail->addAttachment('/home/user/public_html/image.jpg', 'new.jpg'); // Optional name
// Content
$mail->isHTML(true); // Set email format to HTML
$mail->Subject = 'test';
$mail->Body = 'This is the HTML message body <b>in bold!</b>';
$mail->AltBody = 'This is the body in plain text for non-HTML mail clients';
$mail->send();
echo 'Message has been sent';
} catch (Exception $e) {
echo "Message could not be sent. Mailer Error: {$mail->ErrorInfo}";
}
برای دانلود فایل های فراخوانی شده در کد بالا می توانید فایل های PHPMailer را از اینجا دانلود کنید .
4,551بازدید
دیدگاه کاربران
هنوز دیدگاهی ثبت نشده است.
شما میتوانید درباره این مقاله، دیدگاه خود را ثبت کنید.