Search found 4 matches
- 20 Jan 2015 01:24
- Forum: DOS Batch Forum
- Topic: send mail to address book
- Replies: 6
- Views: 2726
Re: send mail to address book
Untested. Remove the ECHO before the BLAT.exe command if you are satisfied with the output on the screen. @echo off FOR %%G IN (C:\script\*.pdf) DO ( FOR /F "tokens=2 delims=_" %%H IN ("%%~nG") DO ( FOR /F "tokens=1,2" delims=," %%I IN (c:\script\address.csv) DO (...
- 19 Jan 2015 10:39
- Forum: DOS Batch Forum
- Topic: send mail to address book
- Replies: 6
- Views: 2726
Re: send mail to address book
I have to send an email to the user XXXXX to your email address using blat I assume you mean: I have to send an email to user XXXXX using blat. Does the PDF document need to be attached? Could you please post the code that you use to send a single email using blat and show where the variables would...
- 19 Jan 2015 09:47
- Forum: DOS Batch Forum
- Topic: send mail to address book
- Replies: 6
- Views: 2726
Re: send mail to address book
Please be more specific and provide examples. Please read this thread as well. http://www.dostips.com/forum/viewtopic.php?f=3&t=6108 in a folder there are pdf files named like this: DOCUMENT_XXXXXXXXXX_PIPPO_YYYYMMDD where xxx is the user code of the recipient who will receive the document (uni...
- 19 Jan 2015 07:47
- Forum: DOS Batch Forum
- Topic: send mail to address book
- Replies: 6
- Views: 2726
send mail to address book
Hello everyone, I'm new on the program in cmd. I want to make a script that having x pdf files, each of which consists of "CODE + File Name", the program needs to see in a txt file that CODE is associated with which email address, so you can send an email to that address with that attachme...