Reputation: 2309
I can use Blat to mail the contents of a .csv file, which are printed in the mail body itself
blat "c:\some.txt" -t [email protected] -s "Some Subject"
but if I add the attach or attachi switch, the program just hangs
blat -attach "c:\some.txt" -t [email protected] -s "Some Subject"
How to fix this?
Upvotes: 0
Views: 5267
Reputation: 2309
I figure out it should be
blat -s "Some Subject" -i "Someone Somewhere" -to someone@somewhere -body "Please see attached." -attach "C:\some.txt"
Upvotes: 1