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 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 a textual
 format, and send the mail.
 
 I'm just looking for recommendations on a good perl mailing module for
 this kind of use.
 
 --Jon Robison
 



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 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 a textual
  format, and send the mail.
 
  I'm just looking for recommendations on a good perl mailing module for
  this kind of use.
 
  --Jon Robison
 



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 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 a textual
 format, and send the mail.
 
 I'm just looking for recommendations on a good perl mailing module for
 this kind of use.
 
 --Jon Robison
 

-- 
~~
Doug Silver
619 235-2665
Network Manager
Urchin Software Corp.   http://www.urchin.com
~~




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
 http://www.modperlcookbook.org/code/ch15/Cookbook/EmailUploads.pm
 
 HTH
 
 --Geoff