Re: configuring Net::SMTP

2023-07-08 Thread perl
Thanks, Andinus. This is useful information. — Rick > On Jul 8, 2023, at 10:11 AM, Andinus wrote: > > > Hello Rick, > > Hostgator might be able to provide you more information regarding why > the email delivery is failing. I'm not very familiar with mail stuff. > > You can also try NET::SMT

RE: configuring Net::SMTP

2023-07-08 Thread Claude Brown via beginners
fess "SMTP datasend: " . $smtp->message(); $smtp->dataend() or confess "SMTP dataend: " . $smtp->message(); $smtp->quit() or confess "SMTP quit: " . $smtp->message(); -- Claude. -Original Message- From: p...@r

Re: configuring Net::SMTP

2023-07-08 Thread Olivier
Rick T writes: > [1:text/plain Show] > > > [2:text/html Hide Save:noname (4kB)] > > I have two subroutines (below) in a program that uses Net::SMTP. I’ve > recently moved my site from FutureQuest.net to Hostgator.com, and this part > of my program has stopped working. The first routine sends an

Re: configuring Net::SMTP

2023-07-09 Thread Bob Kardell via beginners
->message(); > $smtp->datasend($theBody) or confess "SMTP datasend: " . > $smtp->message(); > $smtp->dataend() or confess "SMTP dataend: " . > $smtp->message(); > $smtp->quit() or confess "SMTP quit: " . &

Re: configuring Net::SMTP

2023-07-15 Thread perl
ot; . $smtp->message(); >> $smtp->data() or confess "SMTP data: " . >> $smtp->message(); >> $smtp->datasend($theBody) or confess "SMTP datasend: " . >> $smtp->message(); >> $smtp->dataend()