in reply to Re: Multiple Recipients in email
in thread Multiple Recipients in email
The problem as is turns out is an error in the module code that varifies the recipient addresses. The current version of the module finds an error with multiple addresses when there is none.
The fix was simple. Just needed a pair of parentheses around line 57:
I have sent an email to the maintainer to this effect. Hopefully he will find time to make the change.<<< my @ok = $smtp->to( @to, { SkipBad => 1 } ) >>> (my @ok = $smtp->to( @to, { SkipBad => 1 } ))
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Multiple Recipients in email
by Anonymous Monk on Jan 18, 2014 at 01:46 UTC | |
|
Re^3: Multiple Recipients in email
by Anonymous Monk on Apr 10, 2014 at 12:27 UTC |