garry
Anmeldedatum: 25.10.2005 Beiträge: 442 Wohnort: switzerland
|
Verfasst am: Mi Feb 22, 2006 11:52 am Titel: Vmailer, sende email command |
|
|
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@bluewin.ch
From: garry@bluewin.ch
Subject: Example message
Your message text should start here, separated by a blank
line from the headers
----------------------------------------------------
vmailer.ahk
| Code: | 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.bluewin.ch toralf@bluewin.ch garry@bluewin.ch
return | vmailer.bat | Code: | rem program: text: server: to: from: user: password:
vmailer.exe example.txt mail.bluewin.ch toralf@bluewin.ch garry@bluewin.ch
rem example.txt First line must be empty or add first From:xx and Subject:yy then empty line
pause |
|
|