Как использовать phpList с внешними (сторонними) SMTP-серверами

Как и в заголовке, я пытаюсь разместить phpList на своем сервере и пересылать сообщения через сторонние сервисы (например, TurboSMTP.com). У меня возникают проблемы с поиском каких-либо настроек в приложении или в любом из файлов конфигурации, которые позволяют мне установить это.

2 ответа

Решение

Это доступно в файле config.php, который находится в папке /lists/config

Прокрутите вниз до настроек почтовой программы

Найдите следующий код и измените ваше имя хоста smtp. Надеюсь это поможет.

# If you want to use the PHPMailer class from phpmailer.sourceforge.net, set the following
# to 1. If you tend to send out html emails, it is recommended to do so.
define("PHPMAILER",1);

# To use a SMTP please give your server hostname here, leave it blank to use the standard
# PHP mail() command.
define("PHPMAILERHOST",'');

# if you want to use smtp authentication when sending the email uncomment the following
# two lines and set the username and password to be the correct ones
#$phpmailer_smtpuser = 'smtpuser';
#$phpmailer_smtppassword = 'smtppassword';

lists/config/config.php не всегда содержит все тонкие настройки. Смотрите config/config_extended.php

# in the above you can specify multiple SMTP servers like this:
# 'server1:port1;server2:port2;server3:port3' eg
#define('PHPMAILERHOST','smtp1.mydomain.com:25;smtp2.mydomain.com:2500;smtp3.phplist.com:5123');

# if you want to use smtp authentication when sending the email uncomment the following
# two lines and set the username and password to be the correct ones
#$phpmailer_smtpuser = 'smtpuser';
#$phpmailer_smtppassword = 'smtppassword';

## you can set this to send out via a different SMTP port
# define('PHPMAILERPORT',25);
Другие вопросы по тегам