Beefy Boxes and Bandwidth Generously Provided by pair Networks
Problems? Is your data what you think it is?
 
PerlMonks  

Re^2: How to send multiple user with one mail?

by GordonLim (Acolyte)
on Mar 24, 2013 at 14:29 UTC ( [id://1025147]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
                $smtp->mail(&xxx);
                $smtp->to(&xxx);
    
  2. or download this
    my $email=&xxx;
    $smtp->mail($email);
    $smtp->to(email);
    
  3. or download this
    $smtp->mail('YYY@hotmail.com,' 'xxx@hotmail.com');
    $smtp->to('YYY@hotmail.com,' 'xxx@hotmail.com');
    
  4. or download this
    sub xxx
    {
    my $query = CGI->new;
    ...
        $email = join(', ', @recipient);
        return $email;
    }
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others lurking in the Monastery: (3)
As of 2024-04-25 06:50 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found