On 21-07-2009, at 11h 41'44", steve wrote about "Sending mail from the command line" > Hi list, > > I'm trying: > > mutt -s "test" [email protected] < my_file.txt > > > But the message is not sent: > > 0 (null) > [email protected]: 0 (null) > Error sending message, child exited 70 (internal error). > Could not send the message >
Try some of those: echo | mutt -s test -a my_file.txt [email protected] cat my_file.txt | mutt -s test [email protected] echo -e "text text text\nmore text" | mutt -s test [email protected] ... etc. Ionel
