in reply to sending to multiple addressess
From MIME::Lite’s documentation: Giving VALUE as an arrayref will cause all those values to be added. This is only useful for special multiple-valued fields like "Received"
So, try–
To => \@email_addresses, # or list them explicitly in an anonymous array- To => [ 'email1@doma.in', 'email2@doma.in' ],
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: sending to multiple addressess
by Your Mother (Archbishop) on May 23, 2017 at 18:04 UTC | |
|
Re^2: sending to multiple addressess
by bigup401 (Pilgrim) on May 23, 2017 at 20:49 UTC | |
by Your Mother (Archbishop) on May 23, 2017 at 20:56 UTC |