51 lines
1.5 KiB
PHP
51 lines
1.5 KiB
PHP
<?php
|
|
use PHPMailer\PHPMailer\PHPMailer;
|
|
use PHPMailer\PHPMailer\Exception;
|
|
ini_set ('display_errors', 1);
|
|
ini_set ('display_startup_errors', 1);
|
|
error_reporting (E_ALL);
|
|
|
|
//Now include the following following files based
|
|
//on the correct file path. Third file is required only if you want to enable SMTP.
|
|
|
|
|
|
|
|
require 'phpmailer/src/Exception.php';
|
|
require 'phpmailer/src/PHPMailer.php';
|
|
require 'phpmailer/src/SMTP.php';
|
|
$name="Claudio";
|
|
//mail to client
|
|
|
|
$mail = new PHPMailer(true);
|
|
|
|
$mail->isSMTP(); // Set mailer to use SMTP
|
|
$mail->Host = 'mail.yogasoul.it'; // Specify main and backup server
|
|
$mail->SMTPAuth = true; // Enable SMTP authentication
|
|
$mail->Username = 'info@yogasoul.it'; // SMTP username
|
|
$mail->Password = '!Testolina88'; // SMTP password
|
|
$mail->SMTPSecure = 'tls'; // Enable encryption, 'ssl' also accepted
|
|
$mail->Port = '587';
|
|
|
|
|
|
include('mail/emailtemplate2.php');
|
|
// Email body content
|
|
|
|
//$trfnmbmail=$appformn.'r'.$revnumb;
|
|
$htmlContent = $mailmessage1;
|
|
|
|
|
|
$mail->From = 'info@yogasoul.it';
|
|
$mail->FromName = 'YogiBook [YogaSoul]';
|
|
$mail->addAddress('info@claudiosironi.com'); // Add a recipient
|
|
|
|
|
|
|
|
|
|
$mail->Subject = 'Comunicazione YogiBook';
|
|
$mail->Body = $htmlContent;
|
|
$mail->AltBody = 'This is the body in plain text for non-HTML mail clients';
|
|
|
|
$mail->send();
|
|
// echo 'Message has been sent';
|
|
|
|
?>
|