in reply to Re: MIME::Lite question
in thread MIME::Lite question
use MIME::Lite; #### Start with a simple text message: $msg = MIME::Lite->new( From => 'francis@suresoft.info', To => 'thomas.g@suresoft.info', Subject => 'A message with 2 parts...', Type => 'TEXT', Data => "Here's the GIF file you wanted", ); $msg->send();
Actually this is the first time i am using this module, i am working in windows 2000 and outlook express mail. For outgoing mails in our company we are using smtp server with ip address(192.168.1.5),and for incoming mail we are using pop3 server with same ip address. The name of the server is Intranet.suresoft.info.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: MIME::Lite question
by kwaping (Priest) on Jun 15, 2005 at 15:25 UTC | |
by Anonymous Monk on Jun 15, 2005 at 15:36 UTC | |
by kwaping (Priest) on Jun 15, 2005 at 16:44 UTC |