• We value your experience with Plesk during 2024
    Plesk strives to perform even better in 2025. To help us improve further, please answer a few questions about your experience with Plesk Obsidian 2024.
    Please take this short survey:

    https://pt-research.typeform.com/to/AmZvSXkx
  • The Horde webmail has been deprecated. Its complete removal is scheduled for April 2025. For details and recommended actions, see the Feature and Deprecation Plan.
  • We’re working on enhancing the Monitoring feature in Plesk, and we could really use your expertise! If you’re open to sharing your experiences with server and website monitoring or providing feedback, we’d love to have a one-hour online meeting with you.

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