ikaruga has asked for the wisdom of the Perl Monks concerning the following question:
#!/usr/bin/perl use strict; use warnings; use MIME::Lite::TT::HTML; 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, ); $msg->send('smtp', 'smtp.mail.yahoo.com', Timeout => 60 );
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Mime::Lite and SMTP authentication?
by Corion (Patriarch) on Oct 27, 2019 at 18:12 UTC | |
|
Re: Mime::Lite and SMTP authentication?
by pkaluski (Initiate) on Aug 30, 2018 at 09:13 UTC | |
|
Re: Mime::Lite and SMTP authentication?
by ikaruga (Novice) on Jan 25, 2010 at 01:46 UTC | |
by tirwhan (Abbot) on Jan 25, 2010 at 08:57 UTC | |
|
Re: Mime::Lite and SMTP authentication?
by Krambambuli (Curate) on Jan 25, 2010 at 08:28 UTC |