in reply to Re: Sending email
in thread Sending email
I have tried it but emails are not getting delivered
my $email_s = Email::Simple->create( header => [ From => 'xxx@xxx.com', Subject => "test hi", 'Content-Type' => 'text/html', ], body => $message_s, ); $email_s->header_set('bcc'); sendmail($email_s, { transport => $transport, to => [$tostring] });
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Sending email
by kcott (Archbishop) on Jul 22, 2023 at 15:42 UTC | |
by frank1 (Monk) on Jul 22, 2023 at 16:44 UTC |