Name: vmailer.exe 378kB
Author: Dev Virdi
Homepage:
http://virdi-software.com
Forum:
http://forums.virdi-software.com
FAQ:
http://www.virdi-software.com/vmailer/faq/faq.shtml
V-Mailer is 32-bit command-line and batch mailer and supports SMTP authentication.
It is a console application, which means that it can only be
run from the DOS prompt or from inside a batch file.
It will send a message to any single email address.
example.txt :
---------------------------------------------------
To:
toralf.xy@xbluewin.ch
From:
garry.xy@xbluewin.ch
Subject: Example message
Your message text should start here, separated by a blank
line from the headers
----------------------------------------------------
vmailer.ahk
Code:
;this example add From and Subject to the original script and send
TO =toralf.xy@xbluewin.ch
FROM=garry.xy@xbluewin.ch
F7a =example.txt
LN2 =Header message
FileRead,F7ab,%F7a%
Filedelete,%F7a%
Fileappend,From:GARRY_NEWS`r`nSubject:%LN2%`r`n`r`nHello Toralf`,`r`n%F7ab%,%F7a%
run,vmailer.exe %F7a% mail.xbluewin.ch %TO% %FROM%
return
vmailer.bat
Code:
rem program: text: server: to: from: user: password:
vmailer.exe example.txt mail.xbluewin.ch toralf.xy@xbluewin.ch garry.xy@xbluewin.ch
rem example.txt First line must be empty or add first From:xx and Subject:yy then empty line
pause