friendica-addons/phpmailer
Philipp 63fca0af29
Refactoring Core class structures ...
2021-10-26 21:44:28 +02:00
..
config [phpmailer] Rework addon 2019-05-26 22:07:19 -04:00
vendor [phpmailer] Update phpmailer to v6.5.0 2021-06-26 19:46:51 +02:00
LICENSE [phpmailer] Add README and LICENSE 2019-05-25 23:46:55 -04:00
README.md [phpmailer] Add README and LICENSE 2019-05-25 23:46:55 -04:00
composer.json Fix composer 2020-01-29 21:13:53 +01:00
composer.lock Bump phpmailer/phpmailer from 6.1.6 to 6.5.0 in /phpmailer 2021-06-22 15:39:04 +00:00
phpmailer.php Refactoring Core class structures ... 2021-10-26 21:44:28 +02:00

README.md

PHP Mailer SMTP

by Marcus Mueller

This addon replaces the default mail() function by the PHPMailer library, allowing the use of an outbound SMTP server.

Configuration

You can override the default value of the following config keys in your base Friendica install config/addon.config.php file:

'phpmailer' => [
    // smtp (Boolean)
    // Enables SMTP relaying for outbound emails
    'smtp' => false,

    // smtp_server (String)
    // SMTP server host name
    'smtp_server' => 'smtp.example.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' => '',

    // 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' => '',

    // 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' => '',
],

License

The PHPMailer addon is licensed under the GNU Affero General Public License v3.

The PHP Mailer library is licensed under the GNU Lesser General Public License.