Beefy Boxes and Bandwidth Generously Provided by pair Networks
Do you know where your variables are?
 
PerlMonks  

Re^3: Email::Mime Errors

by almut (Canon)
on Mar 18, 2010 at 14:43 UTC ( #829412=note: print w/replies, xml ) Need Help??


in reply to Re^2: Email::Mime Errors
in thread Email::Mime and Multiple Recipients

for my $to ( 'abc3\@gmail.com', 'abc2\@hotmail.com'){

When you use single quotes for literal strings, you don't want the backslash before @ (the backslash will remain part of the string).

my $from = "abc1\@gmail.com"; # double quotes my $to = 'abc3\@gmail.com'; # single quotes print "from: $from"; print "to: $to"; __END__ from: abc1@gmail.com to: abc3\@gmail.com # !!

Those addresses are Email::Send::Gmail-internally being extracted from the To/Cc/Bcc headers using Email::Address->parse(), which doesn't identify something like abc3\@gmail.com as a valid address, so the final list of recipients is empty — as the error message is trying to tell you.

#!/usr/bin/perl -l use Email::Address; @addresses = Email::Address->parse('abc3@gmail.com'); print "ok : @addresses"; @addresses = Email::Address->parse('abc3\@gmail.com'); print "not ok : @addresses"; __END__ ok : abc3@gmail.com not ok :

Log In?
Username:
Password:

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

How do I use this? | Other CB clients
Other Users?
Others scrutinizing the Monastery: (5)
As of 2023-09-30 09:28 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found

    Notices?