To: email1@gmail.com, email2@gmail.com, email3@gmail.com Reply | Reply to all | Forward | Print | Delete | Show original how are u #### my @email_addresses = ('email2@gmail.com', 'email2@gmail.com', 'email3@gmail.com'); $from = 'support@mydomain'; $subject = "hello users"; $message = "how are u"; $msg = MIME::Lite->new( From => $from, To => \@email_addresses, Subject => $subject, Data => $message ); $msg->send;