• Debian 11 is approaching its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.80 will be the last release to support it.
    If you are running Plesk Obsidian on Debian 11, we recommend you upgrade those servers to Debian 12 using our dist-upgrade tool.
  • We plan to deprecate and remove the support for XML RPC protocol versions earlier than 1.6.9.1 in Plesk Obsidian 18.0.82. We strongly recommend that you update all existing integrations using earlier versions of the XML RPC protocol to comply with the version 1.6.9.1 specification.

Question how can i configure smtp plesk mail to send email from php app

elaa

Basic Pleskian
hello,
I am building a web application using PHP for my backend in which I need to need to send email to customers currently I am using external Gmail address to send my email but I would like to send them using the address of the web site but I don't know how to configure my email to SMTP and on witch server and witch port
 
Sorry, I can't gave you advice as I'm not an IT specialist. I was just wondering at what web site are you working and what is your business? I want to set up an online shop and I'm looking for someone who can help me with the web site.
To begin with online shop, you can easily install prestashop, no need of tecnical/developer knowledge for basic usage...
 
hello,
I am building a web application using PHP for my backend in which I need to need to send email to customers currently I am using external Gmail address to send my email but I would like to send them using the address of the web site but I don't know how to configure my email to SMTP and on witch server and witch port


You can do it with same parameter as you use in an outlook, for example, if you have SSL server mail active, you can connect with "domain.tld" in name server, SSL parameter active and 465 port, you can use PHPmailer library for this :

Send email with PHPMailer and SMTP, default and Plesk (It can be old sample, but it should work fine with


$mail->Host = 'domain.tld';

$mail->Port = 465;
$mail->SMTPSecure = 'tls'; # SSL is deprecated
 
thank you but it seems when I send emails from a PHP code I can't find them in the sent box letter how can i make the app to save them in the boxletter Ia m using roundcube
 
Sorry, I can't gave you advice as I'm not an IT specialist. I was just wondering at what web site are you working and what is your business? I want to set up an online shop and I'm looking for someone who can help me with the web site.
well the site that I am working on is a bit like a shop and another like dashboard if you need any help feel free to ask me
 
well the site that I am working on is a bit like a shop and another like dashboard if you need any help feel free to ask me
Php mail have not this function... review imap options : [Question] Save sent mail · Issue #895 · PHPMailer/PHPMailer

 
Back
Top