Sending Mail

2002-06-13 Thread Jon Robison
Can anyone give me recommendations on a good Mail handler that integrates well with mod_perl? I have a system whereby I want to give people the ability to mail the currently viewed page to someone. Once they select a To: address, the system will look up some data, re-construct the viewed page in

RE: Sending Mail

2002-06-13 Thread Joe Breeden
We use MIME::Lite seems to work well for us. -Original Message- From: Jon Robison [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 13, 2002 8:57 AM To: [EMAIL PROTECTED] Subject: Sending Mail Can anyone give me recommendations on a good Mail handler that integrates well

Re: Sending Mail

2002-06-13 Thread Jon Robison
Can MIME::Lite do attachments? --Jon Joe Breeden wrote: We use MIME::Lite seems to work well for us. -Original Message- From: Jon Robison [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 13, 2002 8:57 AM To: [EMAIL PROTECTED] Subject: Sending Mail Can anyone give me

Re: Sending Mail

2002-06-13 Thread Geoffrey Young
Jon Robison wrote: Can MIME::Lite do attachments? yes. there is an example in the cookbook that uses MIME::Lite: http://www.modperlcookbook.org/code/ch15/Cookbook/Mail.pm http://www.modperlcookbook.org/code/ch15/Cookbook/EmailUploads.pm HTH --Geoff

Re: Sending Mail

2002-06-13 Thread fliptop
Jon Robison wrote: Can MIME::Lite do attachments? yes, it can. install it, then read perldoc MIME::Lite for info on how.

Re: Sending Mail

2002-06-13 Thread Doug Silver
I'm using Mail::Sender which can send attachments. Not sure how it compares to Mime::Lite. -doug On Thu, 13 Jun 2002, Jon Robison wrote: Can anyone give me recommendations on a good Mail handler that integrates well with mod_perl? I have a system whereby I want to give people the ability

Re: Sending Mail

2002-06-13 Thread Jon Robison
Geesh, it's nice having the books author(s) on the mailing list here! --Jon R. Geoffrey Young wrote: Jon Robison wrote: Can MIME::Lite do attachments? yes. there is an example in the cookbook that uses MIME::Lite: http://www.modperlcookbook.org/code/ch15/Cookbook/Mail.pm

Re: Trouble sending mail under modperl...

1999-10-27 Thread Gunther Birznieks
your circumstances are. Later, Gunther On Tue, 26 Oct 1999, Stas Bekman wrote: Hello, mod_perloids. I'm having a gutfull of trouble sending mail under mod_perl. I'm doing it by the books, to wit, the cookbook and the bigbirdie book, under rh linux 5.2. the code is warn

Re: Trouble sending mail under modperl...

1999-10-27 Thread Robin Berjon
At 14:02 27/10/1999 -0400, Gunther Birznieks wrote: The advantage of using sendmail is [1] a centralised MTA config. [2] Graceful handling of problems and requeueing of messages if the SMTP server specified by Net::SMTP would normally be down. eg automatic resilience based on MX record

Re: Trouble sending mail under modperl...

1999-10-27 Thread Matt Sergeant
On Wed, 27 Oct 1999, Robin Berjon wrote: At 14:02 27/10/1999 -0400, Gunther Birznieks wrote: The advantage of using sendmail is [1] a centralised MTA config. [2] Graceful handling of problems and requeueing of messages if the SMTP server specified by Net::SMTP would normally be down. eg

Trouble sending mail under modperl...

1999-10-26 Thread Dave Mee
Hello, mod_perloids. I'm having a gutfull of trouble sending mail under mod_perl. I'm doing it by the books, to wit, the cookbook and the bigbirdie book, under rh linux 5.2. the code is warn ("MAIL: Opening sendmail... path is \"".$sendmailpath."\"");

Re: Trouble sending mail under modperl...

1999-10-26 Thread Stas Bekman
Hello, mod_perloids. I'm having a gutfull of trouble sending mail under mod_perl. I'm doing it by the books, to wit, the cookbook and the bigbirdie book, under rh linux 5.2. the code is warn ("MAIL: Opening sendmail... path is \"".$sendmailpath."\"

Re: Trouble sending mail under modperl...

1999-10-26 Thread Frank D. Cringle
Dave Mee [EMAIL PROTECTED] writes: Hello, mod_perloids. I'm having a gutfull of trouble sending mail under mod_perl. I'm doing it by the books, to wit, the cookbook and the bigbirdie book, under rh linux 5.2. the code is warn ("MAIL: Opening sendmail... path is \""

Re: Trouble sending mail under modperl...

1999-10-26 Thread Ask Bjoern Hansen
On Tue, 26 Oct 1999, Stas Bekman wrote: [...] Other than that, why not to use Net::SMTP, which verifies each command and you can arrange your code to die or warn on failure to send some field, since it talks directly to the smtp server... take a look at the simple send_mail() implemented