Search
Items tagged with: phpmailer
@Friendica Admins
Hello,
I am just learning how to administer a PHP application. I have run into a problem. In general, I activated the addon through the admin panel, on the server, edited the file phpmailer.config.php. However, sending still doesn't work. Can you please tell me if I need to do something else to make it work? I'm attaching the config.
Hello,
I am just learning how to administer a PHP application. I have run into a problem. In general, I activated the addon through the admin panel, on the server, edited the file phpmailer.config.php. However, sending still doesn't work. Can you please tell me if I need to do something else to make it work? I'm attaching the config.
return [
'phpmailer' => [
// smtp (Boolean)
// Enables SMTP relaying for outbound emails
'smtp' => true,
// smtp_server (String)
// SMTP server host name
'smtp_server' => 'mail.runbox.com',
// smtp_port (Integer)
// SMTP server port number
'smtp_port' => 25,
// smtp_secure (String)
// What kind of encryption to use on the SMTP connection.
// Options: '', 'ssl' or 'tls'.
'smtp_secure' => 'ssl',
// smtp_port_s (Integer)
// Secure SMTP server port number
'smtp_port_s' => 465,
// smtp_username (String)
// SMTP server authentication user name
// Empty string disables authentication
'smtp_username' => 'admin@friendica.city',
// smtp_password (String)
// SMTP server authentication password
// Empty string disables authentication
'smtp_password' => '*******************',
// smtp_from (String)
// From address used when using the SMTP server
// Example: no-reply@example.com
'smtp_from' => 'admin@friendica.city',
],
];