Beefy Boxes and Bandwidth Generously Provided by pair Networks
Pathologically Eclectic Rubbish Lister
 
PerlMonks  

Re^2: Sending Email to a list of people using Mail::Sender

by mlebel (Hermit)
on Aug 19, 2011 at 01:32 UTC ( [id://921116]=note: print w/replies, xml ) Need Help??


in reply to Re: Sending Email to a list of people using Mail::Sender
in thread Sending Email to a list of people using Mail::Sender

***RESOLVED***

OK, I solved my problem. Thanks to everyone who put in their feedback. Although the "style" may not be what everyone thinks it should be, it works and it works well. I will use some of your tips to cleanup the script once I have it working the way that I want.

So.. FonkyMonk pointed me to in the right path. I still wasn't sure of the syntax so here is what I did:

-I enabled the debug feature of Mail::Sender

-I put all my values back in that had previously worked

-I looked at the output of the debug and then with some print statements

-I managed to get the same output from grabbing the information from the other file with the following relevant syntax:

foreach $Line (<TESTFILE>) { if ($Line =~ m/To\s*=\s*(.*)/) { push(@To,$1); print "To = <@To>\n"; } } $Sender->OpenMultipart({ to => \@To, subject => "$Subject", });

I hope this helps someone else in the future. (This ends my very first post ever in 6 years of using linux...it's a hell of a community out there.. keep up the good work everyone!)

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others surveying the Monastery: (2)
As of 2024-04-25 20:43 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found