in reply to Re: Sending Email On Windows
in thread Sending Email On Windows
my $smtp = Net::SMTPS->new('outlook.com', Port => 587, doSSL => 'star +ttls', SSL_version=>'TLSv1');
This isn't working for me. The error I get is:
SSL connect attempt failed because of handshake problems
My smtp server is supposed to be using TLS 1.2, so I'm using:
my $smtp = Net::SMTPS->new('outlook.com', Port => 587, doSSL => 'star +ttls', SSL_version=>'TLSv1_2');
but this causes $smtp to be undefined.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Sending Email On Windows
by kcott (Archbishop) on Apr 12, 2023 at 19:18 UTC | |
|
Re^3: Sending Email On Windows
by roho (Bishop) on Apr 13, 2023 at 04:53 UTC |