in reply to Re: mailer test
in thread mailer test

I will try this out marto...but I would still love if someone has a script already made to test mail...let me know and I will send you my email address. Thanks

Replies are listed 'Best First'.
Re^3: mailer test
by naildownx (Beadle) on Jul 06, 2009 at 23:02 UTC
    I found an excellent example of making one on a site and I was able to configure it and it worked like a charm! And it uses MIME::Lite so kudos to marto! Thanks bro! CASE CLOSED! I didn't even need Sendmail for this to work! Excellent! Below is the script I found (I modified it a bit so I could get it through my head...Original link is here http://www.bernzilla.com/item.php?id=483 =======================================================
    #!/usr/bin/perl # use MIME::Lite package use MIME::Lite; # set up email $to = "toemail\@gmail.com"; $from = "fromemail\@inbox.com"; $subject = "Email Sent via Perl"; $message = "This email was sent using Perl."; $file = "sample.txt"; # send email email($to, $from, $subject, $message, $file); # email function sub email { # get incoming parameters local ($to, $from, $subject, $message, $file) = @_; # create a new message $msg = MIME::Lite->new( From => $from, To => $to, Subject => $subject, Data => $message ); # add the attachment $msg->attach( Type => "text/plain", Path => $file, Filename => $file, Disposition => "attachment" ); # send the email MIME::Lite->send('smtp', 'smtp.yourisp.net', Timeout => 60); $msg->send(); }