Hi i want to send mail via microsoft cmd console. I tried many way, but i didnt succeed.
i tried this article http://jpsoft.com/help/index.htm?sendmail.htm
<
Unless you want to talk to an SMTP server directly via telnet
you'd use commandline mailers like blat:
blat -to you@example.com -f me@example.net -s "mail subject" ^
-server smtp.example.net -body "message text"
or bmail:
bmail -s smtp.example.net -t you@example.com -f me@example.net -h ^
-a "mail subject" -b "message text"
You could also write your own mailer in VBScript or PowerShell.