Email::Send::SMTP::TLS - Send Email using Net::SMTP::TLS (esp. Gmail)


Email-Send-SMTP-TLS documentation  | view source Contained in the Email-Send-SMTP-TLS distribution.

Index


NAME

Top

Email::Send::SMTP::TLS - Send Email using Net::SMTP::TLS (esp. Gmail)

SYNOPSIS

Top

    use Email::Send;

    my $mailer = Email::Send->new( {
        mailer => 'SMTP::TLS',
        mailer_args => [
            Host => 'smtp.gmail.com',
            Port => 587,
            User => 'username@gmail.com',
            Password => 'password',
            Hello => 'fayland.org',
        ]
    } );

    use Email::Simple::Creator; # or other Email::
    my $email = Email::Simple->create(
        header => [
            From    => 'username@gmail.com',
            To      => 'to@mail.com',
            Subject => 'Subject title',
        ],
        body => 'Content.',
    );

    eval { $mailer->send($email) };
    die "Error sending email: $@" if $@;

DESCRIPTION

Top

We can use this module to send email through smtp.gmail.com. Email::Send::Gmail use SSL, while this module use TLS.

Of course, others who support TLS also can use it.

SEE ALSO

Top

Email::Send, Net::SMTP::TLS

COPYRIGHT & LICENSE

Top


Email-Send-SMTP-TLS documentation  | view source Contained in the Email-Send-SMTP-TLS distribution.