| Server IP : 152.53.162.115 / Your IP : 216.73.217.85 Web Server : Apache/2 System : Linux host 6.12.0-55.40.1.el10_0.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Oct 21 05:54:51 EDT 2025 x86_64 User : pbshosting ( 1005) PHP Version : 8.3.30 Disable Function : exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/pbshosting/domains/mangopeellive.com/private_html/backup/ |
Upload File : |
<?php
use PHPMailer\PHPMailer\PHPMailer;
use PHPMailer\PHPMailer\Exception;
use PHPMailer\PHPMailer\SMTP;
require 'php/PHPMailer-6.9.3/src/Exception.php';
require 'php/PHPMailer-6.9.3/src/PHPMailer.php';
require 'php/PHPMailer-6.9.3/src/SMTP.php';
$mail = new PHPMailer(true);
$mail_subject = 'Subject';
$mail_to_email = '***@gmail.com'; // your email
$mail_to_name = 'Webmaster';
try {
$mail_from_name = isset( $_POST['name'] ) ? $_POST['name'] : '';
$mail_from_email = isset( $_POST['email'] ) ? $_POST['email'] : '';
$mail_message = isset( $_POST['message'] ) ? $_POST['message'] : '';
// Server settings
$mail->isSMTP(); // Send using SMTP
$mail->Host = '*********'; // Set the SMTP server to send through
$mail->SMTPAuth = true; // Enable SMTP authentication
$mail->Username = '*********'; // SMTP username
$mail->Password = '*********'; // SMTP password
$mail->SMTPSecure = PHPMailer::ENCRYPTION_STARTTLS; // Enable TLS encryption; `PHPMailer::ENCRYPTION_SMTPS` encouraged
$mail->Port = 587; //TCP port to connect to; use 587 if you have set `SMTPSecure = PHPMailer::ENCRYPTION_STARTTLS`
$mail->setFrom($mail_to_email, $mail_to_name); // Your email
$mail->addAddress($mail_from_email, $mail_from_name); // Add a recipient
// for($ct=0; $ct<count($_FILES['file_attach']['tmp_name']); $ct++) {
// $mail->AddAttachment($_FILES['file_attach']['tmp_name'][$ct], $_FILES['file_attach']['name'][$ct]);
// }
// Content
$mail->isHTML(true); // Set email format to HTML
$mail->Subject = $mail_subject;
$mail->Body = '
<strong>Name:</strong> ' . $mail_from_name . '<br>
<strong>Email:</strong> ' . $mail_from_email . '<br>
<strong>Message:</strong> ' . $mail_message;
$mail->Send();
echo 'Message has been sent';
} catch (Exception $e) {
echo "Message could not be sent. Mailer Error: {$mail->ErrorInfo}";
}