|
Is Command Line SMTP really free? |
|
Does Command Line SMTP support HTML email? |
|
Does Command Line SMTP support sending attachments? |
|
Does Command Line SMTP support authentication? |
|
Does Command Line SMTP support SSL or TLS? |
|
What does an example command line look like? |
|
What does a full command line with all options look like? |
|
If the email fails, will Command Line SMTP tell me why? |
|
Does Command Line SMTP perform any logging? |
|
Does Command Line SMTP support multiple recipients? |
|
Does Command Line SMTP support alternate ports? |
|
Can I rename the executable? |
|
Is the source code available? |
|
Is more help available? |
|
|
Is Command Line SMTP really free? |
|
Yes. Command Line SMTP is really free with no restrictions on use either for a personal or corporate environment. |
|
Does Command Line SMTP support HTML email? |
|
Yes. Plain text is the default format however this can be set to HTML using the /format parameter (e.g. /format:html) |
|
Does Command Line SMTP support sending attachments? |
|
Yes. Multiple attachments are supported. Simply use the /attachment parameter (e.g. /attachment:"C:\MyFile.doc") |
|
Does Command Line SMTP support authentication? |
|
Yes. Username and password may be specified using the /username and /password parameters. Please be aware that if you are using Command Line SMTP on a domain or locally on a server then additional authentication may not be required.
Also, please always be careful when placing your username and password in plain text in a .bat file as this could be a security risk! |
|
Does Command Line SMTP support SSL or TLS? |
|
Yes, both are supported using the /usessl parameter. Command Line SMTP will auto-negotiate between SSL/TLS. Please check what configuration/port etc. is required by your SMTP server (e.g. /usessl:yes /port:465). |
|
What does an example command line look like? |
|
CommandLineSMTP.exe /smtpserver:mail.mydomain.com /to:me@mydomain.com /from:me-again@mydomain.com /subject:"Test Message." /message:"This is a test message." |
|
What does a full command line with all options look like? |
|
CommandLineSMTP.exe /smtpserver:mail.mydomain.com /to:me@mydomain.com /from:me-again@mydomain.com /subject:"Testing." /messagefile:"C:\EmailBody.html" /username:user53@MyISP.com /password:mysecurepassword /fromdisplayname:"John Doe" /format:html /attachment:"C:\Report.xls" /:attachment:"C:\Report.pdf" /port:25 /usessl:no /usentlm:no |
|
If the email fails, will Command Line SMTP tell me why? |
|
Yes, the full SMTP response is displayed if there is a problem sending the email. |
|
Does Command Line SMTP perform any logging? |
|
Yes. If there is a problem with a parameter, Command Line SMTP will display the reason for the problem.
If there is a problem sending the email (from the SMTP server) then this will be displayed on screen and an event will be logged in the Event Log (if allowed by user permissions).
If the sending of an email fails (for any reason) the ERRORLEVEL Environment Variable is set to 1. (1 indicates failure, 0 indicates success). |
|
Does Command Line SMTP support multiple recipients? |
|
No. Only one recipient per line is supported. This is because there is a limit to how many characters Microsoft Windows will allow on a command line. You may of course call Command Line SMTP multiple times from within the same .bat file. |
|
Does Command Line SMTP support alternate ports? |
|
Yes. Supported port numbers are 25, 26, 443, 465, 587 and 2525 (default is 25). The port number can be specified using the /port parameter. |
|
Can I rename the executable? |
|
No. The executable must be called "CommandLineSMTP.exe". This is for legal reasons and also to prevent 3rd party rebranding. |
|
Is the source code available? |
|
No. Command Line SMTP is completely free however it is not open-source. |
|
Is more help available? |
|
Yes. If you have problems or questions about getting Command Line SMTP working or how to use it to best suite your needs, simply fill out the contact form. All questions will be answered within 1-2 days. |
|