Link to home
Start Free TrialLog in
Avatar of GorGor1
GorGor1

asked on

how to use IO::Socket

Maneshr...to answer your question.

Yes, I do know the smtp and pop3 server names to test out the IO::Socket module.  I will also be running my own mail server from IIS in Win2k server in the near future.

Is it safe to be opening up new sockets on the fly?  Maybe that was a dumb question.
ASKER CERTIFIED SOLUTION
Avatar of maneshr
maneshr

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of GorGor1
GorGor1

ASKER

BLAM!  It worked like a freakin charm!  Is there an easy way to format the message of the e-mail or do I pretty much have to use the '\n' and '\t' stuff for formatting?

Also, is it capable of attachments?

And finally, does it close the PeerPort after it's finished?

Thanks!
GorGor1,

"..BLAM!  It worked like a freakin charm! .."

Super!!! I would have been surprised with anything less that that :-)

"..Is there an easy way to format the message of the e-mail or  do I pretty much have to use the '\n' and '\t' stuff for formatting?..."

Yes. There is an easy way to format it.

You can use the following approach...

$message=qq{
Here is the first line

Here is the 2nd line?

Thanks!!!

Rgds,

GorGor1
};

&sendMail('mail.server.com','from_your_email_id@server.com','recipeient@server.com','Testing',$message);

"..Also, is it capable of attachments?.."

Right off the bat, my answer would be yes. However, i have not yet extended this script to do that. Therefore, i cannot post any sample code here :-(

"..And finally, does it close the PeerPort after it's finished?.."
Yes. The Socket port is closed with the following statement.

close $remote;

Hope that helps.
Avatar of GorGor1

ASKER

U da man!  Once again, you've saved me a ton of headache.  I'll post again someday when I need to do an attachment and I'll see if you've come up with anything yet.  Thanks again!
GorGor1,

"..U da man!  Once again, you've saved me a ton of headache..."

Thank you!!!

Glad to know i could be of help to you.

"..  I'll post again someday when I need to do  an attachment and I'll see if you've come up with anything yet. .."

Hopefully by then i should have the attachement piece added, tested and working fine.

Till then........................