• 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!
  • We are looking for U.S.-based freelancer or agency working with SEO or WordPress for a quick 30-min interviews to gather feedback on XOVI, a successful German SEO tool we’re looking to launch in the U.S.
    If you qualify and participate, you’ll receive a $30 Amazon gift card as a thank-you. Please apply here. Thanks for helping shape a better SEO product for agencies!
  • 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 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