Email Client that Automatically Sends

1

I am wondering if there is a free email client that automatically sends the email without needing to be open? I'm assuming this email client would have to install a service to do this.

I think the newer versions of outlook can do this, but the version I have, does not do this.

xxl3ww

Posted 2010-05-28T16:57:21.090

Reputation: 1 489

1You really need to rephrase your question. An email client which sends "the email" without needing to be open? I have no idea what that means. – Daisetsu – 2010-05-28T17:11:31.137

1You aren't looking for an email client, you are looking for a mailer daemon or something. No client would automatically start sending emails... it doesn't make sense for a "client" to do that.. – Mitch Dempsey – 2010-05-29T00:17:53.650

Perhaps he wants to send emails from the command line. – Nifle – 2010-05-30T11:31:39.450

Answers

0

As far as I'm aware there is no way for a closed application to do anything unless it's on some sort of timer or cron job to open every 5 minutes then close. Also as far as I know, no version of Outlook is capable of this, in fact they will prompt you to attempt to send anything in your outbox prior to closing because of this exact reason.

I know I have written programs to send emails, but these were all web apps and did it directly using the System.Net.Mail class. But then again it was all processed on a server, not on the client side.

Tim Meers

Posted 2010-05-28T16:57:21.090

Reputation: 261

Yea, I don't understand why this application just doesn't do it on the server side. I may have to download a printer driver that will email the file. – xxl3ww – 2010-05-28T18:42:38.200

0

You can telnet to port 25 of a remote mail server. You don't need much of anything to be running on your local machine to do that. Of course, the remote mail server needs to be happy about you telnetting to its port 25.

The mail sending facilities of early UNIX mail clients were just simple wrappers for doing this.

Charles Stewart

Posted 2010-05-28T16:57:21.090

Reputation: 2 624