• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion

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