muquit / mailsend-go

mailsend-go is a multi-platform command line tool to send mail via SMTP protocol
Other
168 stars 16 forks source link

SMTPS supported ? #50

Open Naithy24804 opened 2 years ago

Naithy24804 commented 2 years ago

Hello,

Does mailsend-go supports SMTPS, please ?

Thanks, Best regards

muquit commented 2 years ago

Yes. StartTLS, usually for port 587 and SSL, usually fort 465 are supported. To see if the server supports them, example:

mailsend-go -info -smtp smtp.gmail.com -port 587
mailsend-go -info -smtp smtp.gmail.com -port 465 -ssl

Thanks.