• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

Question I want to send email direct from my website to clients what do I need to do?

Abaviawe

New Pleskian
I'm trying to send emails from my website to clients with PHPmailer and it requires host, port, username and password please someone should help, where do I get these requirements from so that I will be able to send my email.
 
host: localhost or 127.0.0.1 or the public IP or the public hostname of your machine
port: 25
username: any mailbox (email address) on your server
password: the password of that mailbox
 
It's not still working, this is the code

Code:
ob_start();
include('form.php');
$message= ob_get_contents();
ob_get_clean();

use PHPMailer\PHPMailer\PHPMailer;
use PHPMailer\PHPMailer\SMTP;

require '../src/Exception.php';
require '../src/PHPMailer.php';
require '../src/SMTP.php';

$mail = new PHPMailer(true);

$mail->isSMTP();
$mail->SMTPAuth=true;
$mail-> Host= "127.0.0.1";
$mail->SMTPAuth="true";
$mail->SMTPSecure = "PHPMailer::ENCRYPTION_STARTTLS";
$mail->Post = "25";
$mail->Username = "[email protected]";
$mail ->Password ="******";
$mail->addAddress($recipientEmail);
$mail->contentType = "text/css";
$mail ->Charset ="utf-8";
  $mail->WordWrap=50;
  $mail->IsHTML(true);
$mail-> Subject ="Your order has been comfirmed";
$mail->MsgHTML($message);
$mail->Send();
 
Back
Top