syntax of mailx


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting syntax of mailx
# 1  
Old 08-07-2007
syntax of mailx

Hi,

I have written a code :

mailx -s "FOR TESTING" "abcd@yahooo.com"

but it is not running and not giving any error msg and also not sending
any mail. It takes infinite time.

Please help me.
# 2  
Old 08-07-2007
Check whether your inputs are correct.

If not you can use the mailx command like

Code:
mailx -s "FOR TESTING" "abcd@yahoo.com" <<EOF
This is going to be body of the mail 

EOF

or

Code:
echo "This is going to be body of the mail" |mailx -s "FOR TESTING" "abcd@yahoo.com"

# 3  
Old 08-07-2007
its work.

Thanks.
# 4  
Old 08-07-2007
also you can do really clever stuff like so, send an attachment and run some commands

Code:
mailx -s hello bill@blah.com <<EOF
`uuencode file file`

find the file attached on
`date`
cksum should be 
`cksum file`

EOF

note the uuencode should really be the first line and have no spaces
before it
# 5  
Old 03-31-2008
Solution

Try using following command -

mailx -ms "FOR TESTING" "abcd@yahooo.com"

Quote:
Originally Posted by rinku
Hi,

I have written a code :

mailx -s "FOR TESTING" "abcd@yahooo.com"

but it is not running and not giving any error msg and also not sending
any mail. It takes infinite time.

Please help me.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Need Syntax for mailx to send email to CC

I am trying to send email using "echo "Test Email" | mailx -s "Subject" someone@xyz.com I also want to send CC to another email address along with TO using above statement. Can anyone please help me on this. Thanks. (2 Replies)
Discussion started by: swap27
2 Replies

2. Shell Programming and Scripting

Mailx: How to send a attachment using mailx command

Hi All, Can anyone please provide the command for sending an mail with attachment using mailx command. Thanks in Advance :) Regards, Siram. (3 Replies)
Discussion started by: Sriram.Vedula53
3 Replies

3. UNIX for Advanced & Expert Users

mailx

We are using mailx to send email alerts. On occasions, it is updating our Distribution list with the mesage content. The following is the relevant portion of the script :- MAILGROUP=`more $MDS/feeds/alerts/distribution.lst` export MAILGROUP echo " " | mailx -s "MDS Alert - Refresh Complete"... (6 Replies)
Discussion started by: Paul Byrne
6 Replies

4. UNIX for Advanced & Expert Users

mailx

whn mail command fails. Please tell various reasons. Thanks for the reply (2 Replies)
Discussion started by: ratna
2 Replies

5. UNIX and Linux Applications

MailX

Hi, I am not able to send direct mails from our unix server to our lotus notes id. It was fine until we upgrade our Lotus notes server. What are the changes need to add when we upgrade Lotus notes. Please advice. It run in sh file This is the statement uuencode $RTDIR/$filename... (0 Replies)
Discussion started by: rajani_p
0 Replies

6. Shell Programming and Scripting

mailx

Hi, Thanks in Advance !! I have a korn script which is used to mail the reports to the users. I'm using the mailx utility. The uid used for running the script is "cronman", so the mails recieved by users are id FROM:"cronman". Now i want to change the FROM address to another user name... (2 Replies)
Discussion started by: pradeep_desh
2 Replies

7. UNIX for Advanced & Expert Users

MAILX help

Hello all, how do I view the default mail configurations using the mailx problem? At the moment, I have an account, and all the mail to that account is being routed to an email address, how can I view this behaviour? Also, is there anyway I can view the default mail settings for a server without... (0 Replies)
Discussion started by: Khoomfire
0 Replies

8. UNIX for Dummies Questions & Answers

mailx error message : mailx: NUL changed to @

If I use the "Mail" link instead of the "mail" link to ../mailx I get this error. Mail so-n-so @whatever.com mailx: NUL changed to @ Unknown command: "postmaster" The email still goes through but i get the error. If I use "mail" it goes thru without the error. Any ideas?? (2 Replies)
Discussion started by: BG_JrAdmin
2 Replies

9. UNIX for Dummies Questions & Answers

Help with mailx

I want to send a message with an attachment from Unix using the following command: uuencode $DIRNAME/$FILENAME1 | mailx -s "test subject" xyz@xyz I need to attach the file and I also want a simple message body like "there is an error. Please check it". Do I need to have this message body... (1 Reply)
Discussion started by: ssmith001
1 Replies

10. UNIX for Dummies Questions & Answers

Need help with mailx

How can I send a file of Unix usernames to everyone on the file without making an alias in my .mailrc file? Using a mailx command. Thanks, J.J. (2 Replies)
Discussion started by: JJJ
2 Replies
Login or Register to Ask a Question