mail list via script

2006-03-07 Thread Curt Shaffer
I have a need to mail 1000 users their usernames and passwords, this will be a 1 time thing. I was thinking that I could just do some sort of foreach routine but I can't see how that will work when they will all be different. I then thought a hash with the usernames and passwords would be OK, but

RE: mail list via script

2006-03-07 Thread Ryan Frantz
-Original Message- From: Curt Shaffer [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 07, 2006 11:06 AM To: beginners@perl.org Subject: mail list via script I have a need to mail 1000 users their usernames and passwords, this will be a 1 time thing. I was thinking that I could

RE: mail list via script

2006-03-07 Thread Curt Shaffer
-Original Message- From: Ryan Frantz [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 07, 2006 11:09 AM To: Curt Shaffer; beginners@perl.org Subject: RE: mail list via script -Original Message- From: Curt Shaffer [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 07, 2006 11:06

Re: mail list via script

2006-03-07 Thread JupiterHost.Net
Thanks for the response! The problem I have with this solution is I need to send both a username and a password (i.e. two values) per email. Can I add another value to the hash like this: [EMAIL PROTECTED] = 'abc123','321cba',? my %users = ( '[EMAIL PROTECTED]' = [$johnuser, $johnpass],

RE: mail list via script

2006-03-07 Thread Ryan Frantz
-Original Message- From: Curt Shaffer [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 07, 2006 11:21 AM To: Ryan Frantz; beginners@perl.org Subject: RE: mail list via script -Original Message- From: Ryan Frantz [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 07, 2006

RE: mail list via script

2006-03-07 Thread Curt Shaffer
-Original Message- From: Ryan Frantz [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 07, 2006 11:28 AM To: Curt Shaffer; beginners@perl.org Subject: RE: mail list via script -Original Message- From: Curt Shaffer [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 07, 2006 11:21

Re: mail list via script

2006-03-07 Thread Jay Savage
On 3/7/06, Ryan Frantz [EMAIL PROTECTED] wrote: -Original Message- From: Curt Shaffer [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 07, 2006 11:06 AM To: beginners@perl.org Subject: mail list via script I have a need to mail 1000 users their usernames and passwords