I have tried the following:

mailx -s "test" abc@xyz.com

which says bash no command found.

also have tried : Mail -s "test" abc@xyz.com

which says /usr/sbin/sendmail: No such file or directory

even though the file name is valid

link|improve this question

75% accept rate
feedback

3 Answers

up vote 3 down vote accepted

For basic sending, just try echo "Body Text" | mutt -a <file> -s "test" abc@xyz.com.

Now, as Sleske mentioned, you might need to modify /etc/mail/sendmail.mc to configure this differently. But if you're just wanting to send, and not receive, E-Mails locally, and you've already got an MX record for xyz.com, I think you should be all set.

Also, given your 'command not found' issues, double check you have MTAs installed. use rpm -q sendmail or rpm -q mutt, and see if you find any packages.


--Chris

link|improve this answer
feedback

You first need to set up a local mail server, and configure it to send mails (usually by passing them on to your ISP's relaying mail server).

See e.g. http://serverfault.com/questions/137894/how-do-i-set-up-a-basic-mail-server-for-the-first-time

link|improve this answer
feedback
(  cat body.txt 
   uuencode pic.jpg pic.jpg
) | mailx -s "subject" abc@xyz.com 

try this

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.