Mail command help


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Mail command help
# 1  
Old 12-01-2017
Mail command help

I want to send file data not attachment through email in unix tried
below line

Code:
file=t.txt

mail -s "INPUT DATA" "kali@gmail.com" <<eof
HI Team

Please find the below details

echo `$file'

Thanks
eof

t.txt

Code:
Account Country of Issue 
Security ID  NAME 123 24455 78900 
Security ID 23354 55667 9009000 990010
NAME ID999 990020  899040 999002

while using this command it is not display line by line it display in single line in the text meassage

Last edited by vbe; 12-01-2017 at 10:39 AM.. Reason: corrected the code tags
# 2  
Old 12-01-2017
Might be a problem with your outlook mail client.

EDIT: And, I'm pretty sure your echo command won't work. Try cat $file.
# 3  
Old 12-01-2017
is it correct or any other way we can send plz sugest
# 4  
Old 12-01-2017
All echo will do is display the content of the variable, here : t.txt
as RudiC mentionned if you want the content of the t.txt then its cat you should use...
# 5  
Old 12-01-2017
I'm not sure this will work for several reasons, not least:-
  • You have mis-matched quotes on the echo command.
  • The content of the here document (between <<eof and eof) is not executed.
You should get away with variables being interpreted, so perhaps this would work:-
Code:
file=t.txt
file_content=$(cat $file)

mail -s "INPUT DATA" "kali@gmail.com" <<eof
HI Team

Please find the below details

$file_content

Thanks
eof



Does that help? It's probably not the best way to do this but it might work.



Robin
# 6  
Old 12-01-2017
working file but the content are nor display in the text mail
# 7  
Old 12-01-2017
What about showing us what you get, that could help us understand and figure out
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Client was not authenticated to send anonymous mail during MAIL FROM (in reply to MAIL FROM comm

I am having trouble getting mail to work on a red hat server. At first I was getting this message. Diagnostic-Code: X-Postfix; delivery temporarily suspended: connect to :25: Connection refused Then added the port to my firewall. Then I temporarily turned off selinux. I then copied this file... (1 Reply)
Discussion started by: cokedude
1 Replies

2. UNIX for Advanced & Expert Users

Unable to send mail with 'mail' command

I am unable to cause the 'mail' command to send mail from my linux ubuntu 15.10 computer. File 'mail.log' typically reports Connection timed out. I issue the command: mail -s "my subject" recipient@domain.com < filenamewhere filename is a file containing my message. Specifically, the... (3 Replies)
Discussion started by: tcnm
3 Replies

3. Homework & Coursework Questions

Creating a function that sends a mail using mail command

Use and complete the template provided. The entire template must be completed. If you don't, your post may be deleted! 1. The problem statement, all variables and given/known data: The function will be called m and it will allow you to send an email to someone using the mail command. The... (1 Reply)
Discussion started by: Drucian
1 Replies

4. Shell Programming and Scripting

Not able to send the mail using mail and mailx command

Hi All, I am trying to send a mail from linux server but could'nt able to send the mail. I tried the below syntax's so far but no luck. mail -s “Hello world” abc@xyz.com < /usr/g/txt.log cat "txt.log" | mailx -s "Hello world" abc@xyz.com mailx -s “Hello world” abc@xyz.com <... (2 Replies)
Discussion started by: scriptscript
2 Replies

5. Fedora

Need to send mail using mail command

Hi Guys, Am tried with the mail & mailx command to send mail to other localhost machine, Which are all connected in a LAN. I can not able to send, Either it wont display any error message at that time and later am receiving a failure mail.. But i can send and receive (from-to) in my machine..... (28 Replies)
Discussion started by: Adhi
28 Replies

6. UNIX for Advanced & Expert Users

need to configure mail setting to send mail to outlook mail server

i have sun machines having solaris 9 & 10 OS . Now i need to send mail from the machines to my outlook account . I have the ip adress of OUTLOOK mail server. Now what are the setting i need to do in solaris machines so that i can use mailx or sendmail. actually i am trying to automate the high... (2 Replies)
Discussion started by: amitranjansahu
2 Replies

7. Shell Programming and Scripting

Not able to receive mail using mail command

Hi all, I have written a script which supposed send a mail. For testing I am just sending mails to my ID. script I have written to send mail is- #!/usr/bin/ksh MAIL_FILE="$HOME/MAIL_FILE" MAILOUT_LIST="milindb@example.com" mail -s "Subject" $MAILOUT_LIST < $MAIL_FILE if then echo... (6 Replies)
Discussion started by: milindb
6 Replies

8. Solaris

identify the mail server for mail command

Hi , I am new to unix , i am using the mail and mailx command to send the mail .How come i will know the my mail command using which server as mail box.. Please help me .. Thanks in advance (1 Reply)
Discussion started by: julirani
1 Replies

9. Shell Programming and Scripting

how to cc by using mail command

Hell Sir/Mam, I m new user in unix scripting, Please help me as soon as possible how CC by using Mail command in unix /Linux. Thanking you. (2 Replies)
Discussion started by: Nirmal
2 Replies

10. Solaris

how to forward mail in /var/mail/username to external mail

Dear All, Now I use solaris 10 and I try to forward mail from /var/mail/username to their external mail so what should I do? thank u in advance (2 Replies)
Discussion started by: unitipon
2 Replies
Login or Register to Ask a Question