Hi all,
This my code :
'list_diffusion@gmail.com' is a mailing list;
I don't understand why when i use this script,
benoit received the mail and the mailing list didn't receive the mail.
When i use outllok for sending a mail to the mailing list,it's run.
Can you help me ?
How can i trace it ?
Thanks
This my code :
Code:
my $dest = 'list_diffusion@gmail.com';
my $object = "TEST";
my $from = "benoit.lacoutre@gmail.com";
my $message = "TEST";
my $Mails = new MIME::Lite
From => $from,
To => $dest,
Cc => '',
Bcc =>'',
Subject =>$object,
Type =>'multipart/mixed',
Data => "$message";
$Mails->attr("content-type" => "text/html; charset=iso-8859-1");
$Mails->send;
'list_diffusion@gmail.com' is a mailing list;
I don't understand why when i use this script,
benoit received the mail and the mailing list didn't receive the mail.
When i use outllok for sending a mail to the mailing list,it's run.
Can you help me ?
How can i trace it ?
Thanks