1
General Support / Re: Email error
« on: April 18, 2025, 06:28:42 AM »
You should to ask your hosting provider why they disabled function proc_open() on your host. Some hosting providers do that by security reasons.
Or ask them how to enable it via cPanel.
Also you can try to setup dsn inside your system/config.php file and change mailer setting on admin-side to "take from config"
Or ask them how to enable it via cPanel.
Also you can try to setup dsn inside your system/config.php file and change mailer setting on admin-side to "take from config"
Code: [Select]
// details about allowed DSN settings https://symfony.com/doc/6.0/mailer.html#transport-setup
const MAILER = [
//'dsn' => null,
// OR
'protocol' => 'smtp', // or ses+smtp, gmail+smtp, mandrill+smtp, mailgun+smtp, mailjet+smtp, postmark+smtp, sendgrid+smtp, sendinblue+smtp, ohmysmtp+smtp
//we use "username" also as ID, KEY, API_TOKEN, ACCESS_KEY
'username' => 'merchant@yourdomain.com',
'password' => '****super-secret-password****',
'host' => 'your-hostname',
'port' => 465 //or 587 etc
];