I use MIME::Lite. It gives me a lot of options, including HTML
formatting with embedded image attachments.
Perl Perl wrote:
> Hi All,
>
>I want to write a perl script which sends the mail with the
> attachements.
> Browsing intenet I got that I can one of these modules
> 1) Email::Send
I actually use Mail::Sender and here is a sample of how.
my $sender = new Mail::Sender({
smtp => "skyline", # smtp mail sever
from => $from, # list of comma separated email addresses
});
$sender->MailFile({
to => $to, # list of comma separated email addres
Hi All,
I want to write a perl script which sends the mail with the
attachements.
Browsing intenet I got that I can one of these modules
1) Email::Send
2) Mime::Lite &
3) chilkat
I am not sure which one I have to use, so could you please let me know
about this.
If you have examples i