in reply to Sending mail to multiple users using MIME
The lines
are incorrect, the string is in single quotes and so $_ is not interpolated. They should be replaced withforeach (@arr){ $users.= '$_.@gmail.com', }
$users = join ', ', @arr;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Sending mail to multiple users using MIME
by Ultra (Hermit) on Jan 28, 2008 at 09:21 UTC |