send email issue in unix


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting send email issue in unix
# 1  
Old 01-11-2012
send email issue in unix

Hi,

I am trying to send the contents of a file as email in unix.I am using the below code to do this.But when i get the email i see that SUBJECT and TO is blank. Can you please let me know why it is blank? Also the FROM address comes as admin@myhost. Is there any way i can set FROM to user defined value?
Code:
    SUBJECT="Automated Security Alert"  
    TO="xyz@abc.com"  
    MESSAGE="/export/home/admin/bin/getStatus2.txt"  
    /usr/bin/mail -s "$SUBJECT" "$TO" < $MESSAGE

thanks
vignesh
Moderator's Comments:
Mod Comment Please use next time code tags
# 2  
Old 01-11-2012
This question is Operating System specific.

Please tell us what Operating System and version you have and what Shell you are using.
# 3  
Old 01-11-2012
I am using bash shell and SunOS
# 4  
Old 01-11-2012
There are umpteen versions of SunOS (none of which come with "bash" as standard), but my guess is that you should be using "mailx" not "mail".

Code:
SUBJECT="Automated Security Alert"  
    TO="xyz@abc.com"  
    MESSAGE="/export/home/admin/bin/getStatus2.txt"  
/usr/bin/mailx -s "$SUBJECT" "$TO" < $MESSAGE

# 5  
Old 01-11-2012
Thanks mailx worked! Can you please let me know whether if there is any way i can set FROM to a user defined value?
# 6  
Old 01-11-2012
It should be the "-r" switch on the "mailx" command line, but see "man mailx" on your system. Beware that this sort of mail spoofing can result in virus scanners eating the mail.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Use of java mail to send email from UNIX

Can someone help me to understand how to configure java mail on unix or what is syntex for that to put in script so email can be sent. earlier i was using 'send mail' to send email and not SMPT is stopped in unix machine and they asked us to use java mail. Before I was using this ... (0 Replies)
Discussion started by: mirwasim
0 Replies

2. Shell Programming and Scripting

send email from unix server

HI Guys, I want send email from my script ..and i have tried below command still no luck. ( uuencode $Adm "Test.txt" ) | mailx -s "Test" P***.P****@at***.com mailx -s "test mail" P****.P***@at***.com < $Admin Any other option.... (2 Replies)
Discussion started by: asavaliya
2 Replies

3. Shell Programming and Scripting

Script to send email after comparing the folder permissions to a certain permission & send email

Hello , I am trying to write a unix shell script to compare folder permission to say drwxr-x-wx and then send an email to my id in case the folders don't have the drwxr-x-wx permissions set for them . I have been trying to come up with a script for few days now , pls help me:( (2 Replies)
Discussion started by: nairshar
2 Replies

4. UNIX for Dummies Questions & Answers

How to send email from HP Unix box

Hi everyone, I am new to HP/UX and I would like to know if there is a way to receive system alerts and logs via email on daily bases. Recently our system crashed due to Hard Disk failure, and since then we are checking ELM every day. I would like to automate that process and have UNIX mail send... (3 Replies)
Discussion started by: eurouno
3 Replies

5. UNIX for Advanced & Expert Users

How to know whether I am able to send email from unix server or not?

How to know whether I am able to send email from unix server or not? I ma trying to send mail to my gmail id using command sendmail -s "Subject" abc@gmail.com Hi How are you? . It showed that You are not allowed to send mail. My question is there any file which contains the list of... (0 Replies)
Discussion started by: siba.s.nayak
0 Replies

6. Shell Programming and Scripting

send email from unix with attachment

Hello All, This is a common question that I found lot of results in the forums. I am trying to use uuencode to attach a file and send email. I have no issues sending email, but not able to attach any files using sendmail. Is uuencode part of sendmail or does 'uuencode' utility need to be... (1 Reply)
Discussion started by: chiru_h
1 Replies

7. Shell Programming and Scripting

How to Send email in UNIX

Hi, I am new to Shell script programming. Can anyone explain How to Send Mail in UNIX. Can explain in detail please? Thanks in Advance. From Sathish D V. (1 Reply)
Discussion started by: cooolthud
1 Replies

8. Programming

Can we send email with C program on Unix?

Hi, I just wanted to know if there is any way to send email using C program on Unix. Thanks for your help! Julie (3 Replies)
Discussion started by: whatisthis
3 Replies

9. UNIX for Dummies Questions & Answers

Send email where # is in the email address - Using Unix

Hi All, How do I send an email using malix where email address contains a #. I have a email address like this : #test@test.com I want to send email like malix -s "TEST" #test@test.com < SOMEFILE I tried \# but doesn't work. Please let me know how we can achieve this? I am in... (1 Reply)
Discussion started by: jingi1234
1 Replies

10. UNIX for Advanced & Expert Users

Unable to send eMail from a UNIX-Host ( using mailx ) to a Outlook-email-addres(Win)

Hi A) I am able to send eMail using mailx from a UNIX ( solaris 8 ) host to my Outlook-email-ID : FName.Surname@Citigroup.com ( This is NOT my actual -eMail-ID). But in Outlook the "From :" eMail address is displayed as " usr1@unix-host1.unregistered.email.citicorp.com " .i.e the words... (2 Replies)
Discussion started by: Vetrivela
2 Replies
Login or Register to Ask a Question