in reply to Re^3: Sending email
in thread Sending email
i have tried most ways but i think its a module problem
because this way, Bcc method is working. this method is working for me, but i wanted good module which supports smtp and html message
my $to = ''; my $from = 'xxx@xxx.com'; my $subject = $subject; my $message = " $msg "; open(MAIL, "|/usr/sbin/sendmail -t"); print MAIL "To: $to\n"; print MAIL "Bcc: $emails\n"; print MAIL "From: $from\n"; print MAIL "Subject: $subject\n\n"; print MAIL $message; close(MAIL);
|
|---|