Hi everybody,
Currently I am working on porting some Rexx code from old OS/2 to Windows. I am working on this one file in which I have to email a report to a few people. in OS/2 the following was used:
'sendmail -t -af ' MsgFile
I learned that I have to use Blat to do the same thing in windows. This is what I tried: (Assuming MsgFile would replace "mytext.txt".
call blat.exe "mytext.txt" -s "Testing email-day-ssfs" -t 'theblizz15@yahoo.com'
I used my email address just to see if it works. However Rexx is yelling at me on that statement. It is referring to a bad arithmetic expression there. I have tried many combinations. Does anyone have any ideas how to invoke the blast.exe correctly?
Currently I am working on porting some Rexx code from old OS/2 to Windows. I am working on this one file in which I have to email a report to a few people. in OS/2 the following was used:
'sendmail -t -af ' MsgFile
I learned that I have to use Blat to do the same thing in windows. This is what I tried: (Assuming MsgFile would replace "mytext.txt".
call blat.exe "mytext.txt" -s "Testing email-day-ssfs" -t 'theblizz15@yahoo.com'
I used my email address just to see if it works. However Rexx is yelling at me on that statement. It is referring to a bad arithmetic expression there. I have tried many combinations. Does anyone have any ideas how to invoke the blast.exe correctly?