I m newbie at perl.I'm trying to use Mime::Lite.I looked their site and i try to sending mail this way

#!/usr/bin/perl
use MIME::Lite;
$msg = MIME::Lite->new(
    From     =>'cassidy@hotmail.com',
    To       =>'ericafb77@gmail.com',
    Cc       =>'some@other.com, some@more.com',
    Subject  =>'Helloooooo, nurse!',
    Data     =>"AAA"
);
$msg->send; 

But mail did not come to my mail adress.What should i do?

link|improve this question
What is the return value from send? Do you have /usr/lib/sendmail and the necessary permissions to execute it? Have you tried $msg->send_by_smtp instead of $msg->send? – mu is too short Nov 6 '10 at 17:17
"What should I do?" -- start debugging. – Ether Nov 7 '10 at 16:51
feedback

2 Answers

up vote 3 down vote accepted

What platform?

On a well-configured Linux/UNIX box this usually works as is, but if you're using Windows, you probably need to tell it how to send the mail.

The following should do the trick:

#!/usr/bin/perl

use strict;
use warnings;

my $msg = MIME::Lite->new(
    From => 'me@example.com',
    To => 'you@example.com',
    Cc => 'her@example.com,him@example.com',
    Subject => 'Hello, World!',
    Data => 'Test.',
);
$msg->send(smtp => 'smtp.example.com');

where smtp.example.com is the SMTP server that your internet provider tells you to use.

link|improve this answer
feedback

Did you verify that your host actually sent the E-mail using SMTP by using a packet sniffer such as wireshark ? If not, do that and report your findings here.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.