Beefy Boxes and Bandwidth Generously Provided by pair Networks
There's more than one way to do things
 
PerlMonks  

Re^2: mailer test

by naildownx (Beadle)
on Jul 06, 2009 at 22:33 UTC ( [id://777700]=note: print w/replies, xml ) Need Help??


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(); }

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://777700]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others rifling through the Monastery: (1)
As of 2024-04-25 05:51 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found