in reply to Re^2: Using Email::Stuff to send SMTP mail through GMail
in thread Using Email::Stuff to send SMTP mail through GMail
produces:#!/usr/bin/perl use warnings; use strict; use Net::SMTP::SSL; my $smtp = Net::SMTP::SSL->new( 'smtp.gmail.com', Port => 465, Timeout => 30, Debug => 1, ); print $@;
So I think the problem is deeper again, Net::SMTP::SSL is purely a thing wrapper around Net::SMTP to enable it to use IO::SOCKET::SSL instead of IO::SOCKET::INET.Net::SMTP::SSL: Bad service ''
I don't have time to try more now, but this might give you some more thngs to follow up.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Using Email::Stuff to send SMTP mail through GMail
by initself (Monk) on Sep 20, 2006 at 19:56 UTC | |
|
Re^4: Using Email::Stuff to send SMTP mail through GMail
by adamk (Chaplain) on Sep 22, 2006 at 02:23 UTC | |
by initself (Monk) on Sep 22, 2006 at 05:38 UTC |