Current version v1.4.1
XmlSendmail is a FREE command-line utility for the Windows platform
that sends emails using an xml configuration
file. It's a pre-compiled executable so there's
not need to use Perl/Java or compile anything
like other free sendmail applications.
Here's an example command-line invocation and configuration file.
C:\> sendmail mymessage.xml
Sample configuration file...
|
<Sendmail>
<Server host="www.myhost.com" port="25" username=""
password=""/>
<Message>
<Sender
email="someone@myhost.com"
name="someone"/>
<Recipient
email="person1@myhost.com"
name="person1"/>
<Recipient
email="person2@myhost.com"
name="person2"/>
<BCCRecipient
email="person2@myhost.com"
name="person2"/>
<Subject>Test
Subject</Subject>
<Body
filename="mytest.txt" contentType="text/html"/>
</Message>
<Attachment filename="test.txt" title="test
document"/>
</Sendmail>
|
You can also specify /d at the command line to
see the raw SMTP
debug information
C:\> sendmail /d mymessage.xml
|