If your providers server listens on port 465 (as indicated in the code snippet above), it almost certainly expects an SSL connection (465 is the universally accepted port for SMTPS,i.e. SMTP over SSL). AFAIK you can't use SSL in conjunction with the MIME::Lite send() method (or rather, you probably could but it's more trouble than it is worth), so you'll need to use something like Net::SMTP::SSL for sending. You can still use MIME::Lite for constructing the message. For example (untested):

#!/usr/bin/perl use strict; use warnings; use MIME::Lite::TT::HTML; use Net::SMTP::SSL; my %params; my %options; $options{INCLUDE_PATH} = 'c:/Documents and Settings/Uriel/My Documents +/Sandbox/perl/'; my $msg = MIME::Lite::TT::HTML->new( From => 'admin@example.com', To => 'test@yahoo.com', Subject => 'Hello world', Template => { text => 'test.txt', html => 'test.html', }, TmplOptions => \%options, TmplParams => \%params, ); my $smtp; $smtp = Net::SMTP::SSL->new($host, Port=>465) or die "Can't connect"; $smtp->auth($user, $pass) or die "Can't authenticate:".$smtp->message( +); $smtp->mail('admin@example.com') or die "Error:".$smtp->message(); $smtp->to('test@yahoo.com') or die "Error:".$smtp->message(); $smtp->data() or die "Error:".$smtp->message(); $smtp->datasend($msg->as_string) or die "Error:".$smtp->message(); $smtp->dataend() or die "Error:".$smtp->message(); $smtp->quit() or die "Error:".$smtp->message();

All dogma is stupid.

In reply to Re^2: Mime::Lite and SMTP authentication? by tirwhan
in thread Mime::Lite and SMTP authentication? by ikaruga

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.