send email with perl 587 and startssl

2011-07-22 Thread m...@smtp.fakessh.eu
hello folks when is it the easiest solution to email 587 startssl and authentication I arrived by writing this but the email sent does not contain the headers of the authentication ]$ cat emailsender1.pl #!/usr/bin/perl use Email::MIME; my $message = Email::MIME->create(

RE: send email with Perl

2005-10-27 Thread Ryan Frantz
> -Original Message- > From: Charles Li [mailto:[EMAIL PROTECTED] > Sent: Thursday, October 27, 2005 9:38 AM > To: beginners@perl.org > Subject: send email with Perl > > Hi, > I am using "use Net::SMTP;" to send email to multiple > people. But

RE: send email with Perl

2005-10-27 Thread Bob Showalter
Charles Li wrote: > Hi, > I am using "use Net::SMTP;" to send email to multiple > people. But the recipients can not send the other > receiver emails. It just says undisclosed recipients. > How do I send email to multiple people and let them > see who is on the To list? Include a To: header in

send email with Perl

2005-10-27 Thread Charles Li
Hi, I am using "use Net::SMTP;" to send email to multiple people. But the recipients can not send the other receiver emails. It just says undisclosed recipients. How do I send email to multiple people and let them see who is on the To list? Thanks. __