| Server IP : 209.209.40.120 / Your IP : 216.73.217.112 Web Server : Microsoft-IIS/10.0 System : Windows NT NEWWWW 10.0 build 17763 (Windows Server 2019) i586 User : NEWWWW$ ( 0) PHP Version : 8.3.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /HostingSpaces/admin/247sms.com/wwwroot/ |
Upload File : |
<?php
//Import PHPMailer classes into the global namespace
//These must be at the top of your script, not inside a function
use PHPMailer\PHPMailer\PHPMailer;
use PHPMailer\PHPMailer\SMTP;
use PHPMailer\PHPMailer\Exception;
include "general.php";
require 'vendor/autoload.php';
//include 'newsendmail.php';
function mailtoclient ($clientEmail,$mess1,$mess2,$subj,$mfrom,$mfromname,$noreplyto){
echo 'nosa';
$mail = new PHPMailer(true);
try {
//Server settings
$mail->SMTPDebug = SMTP::DEBUG_SERVER; //Enable verbose debug output
$mail->isSMTP(); //Send using SMTP
$mail->Host = 'email-smtp.us-east-1.amazonaws.com'; //Set the SMTP server to send through
$mail->SMTPAuth = true; //Enable SMTP authentication
$mail->Username = 'AKIAUW4RAPR3HBRDPAED'; //SMTP username
$mail->Password = 'BOwfFxC25Q6GoghaUYOWoK/Y1mr0LKpZ6l7DUXnzdCYO'; //SMTP password
//$mail->SMTPSecure = PHPMailer::ENCRYPTION_SMTPS; //Enable implicit TLS encryption
$mail->SMTPSecure = PHPMailer::ENCRYPTION_STARTTLS;
$mail->Port = 587; //TCP port to connect to; use 587 if you have set `SMTPSecure = PHPMailer::ENCRYPTION_STARTTLS`
//Recipients
$mail->setFrom($mfrom, $mfromname);
//$mail->addAddress('joe@example.net', 'Joe User'); //Add a recipient
$mail->addAddress($clientEmail); //Name is optional
$mail->addReplyTo($noreplyto, $mfromname);
//$mail->addCC('cc@example.com');
//$mail->addBCC('bcc@example.com');
//Content
$mail->isHTML(true); //Set email format to HTML
$mail->Subject = $subj;
$mail->Body = $mess1;
$mail->AltBody = $mess1;
$mail->send();
echo 'Message has been sent';
} catch (Exception $e) {
echo "Message could not be sent. Mailer Error: {$mail->ErrorInfo}";
}
}
$email ="nosa.osahon@gmail.com";
$myMessage ="Hello";
$myMmessage2= "Hello";
$mysub= "Test message";
$mfrom= "customercare@247sms.com";
$mfromname = "Support 247sms";
$replyto = "noreply@247sms.com";
$mymail = mailtoclient($email,$myMessage,$myMmessage2,$mysub,$mfrom,$mfromname,$replyto);
echo "sent";
?>