30.11.2020, 12:04
I 'm testing our business mail, that are the parameters:
Impostazione SMTP
Nome server: smtp.office365.com
Porta: 587
Metodo di crittografia: TLS
in common fuctions I have
local settings = {
-- "from" field, only e-mail must be specified here
from = 'segnalazioni.tecniche@komponext.it',
-- smtp username
user = 'segnalazioni.tecniche@komponext.it',
-- smtp password
password = 'xxxxxxxx',
-- smtp server
server = 'smtp.office365.com',
-- smtp server port
port = 587,
-- enable ssl, required for gmail smtp
secure = 'sslv23',
}
I have to change or disable secure = 'sslv23' since I will use 587 port?
Impostazione SMTP
Nome server: smtp.office365.com
Porta: 587
Metodo di crittografia: TLS
in common fuctions I have
local settings = {
-- "from" field, only e-mail must be specified here
from = 'segnalazioni.tecniche@komponext.it',
-- smtp username
user = 'segnalazioni.tecniche@komponext.it',
-- smtp password
password = 'xxxxxxxx',
-- smtp server
server = 'smtp.office365.com',
-- smtp server port
port = 587,
-- enable ssl, required for gmail smtp
secure = 'sslv23',
}
I have to change or disable secure = 'sslv23' since I will use 587 port?