Attachment readablity using mailx command


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Attachment readablity using mailx command
# 1  
Old 09-22-2014
Attachment readablity using mailx command

Team,

Presently i have the below script which sends the attachment but in a .bat method, i want it more of readable method.i.e(abc.log) for which i am doing the cat

Code:
cat abc.log | mailx -s "Todays logs $(date)" <my_email_id.com>


Regards
Whizkid


Moderator's Comments:
Mod Comment Please use code tags next time for your code and data. Thanks

Last edited by vbe; 09-22-2014 at 05:44 AM..
# 2  
Old 09-22-2014
Hi,

You could try this;

Code:
cat abc.log > /tmp/attacment.log
mailx -a /tmp/attachment.log -s "Todays logs $(date)" <my_email_id.com>

This should make things a bit more readable.

Regards

Dave
# 3  
Old 09-22-2014
Code:
uuencode abc.log abc.log | mail -s "Todays logs $(date)" my_email_id@domain.com

# 4  
Old 09-22-2014
Hi Whizkidash,

Have I failed to understand this, in response to Srinishoo's answer - are you saying that the log file is a "Binary" file. A ".bat" file would normally be a text file - in a "Windows/DOS" environment this would normally be processed by "COMMAND.COM".

Regards

Dave
# 5  
Old 09-22-2014
Hi Gul,

When i try with your below provided commands it goes into iterations, i.e it does not comes out of the loop.

Code:
mailx -a /tmp/attachment.log -s "Todays logs $(date)" <my_email_id.com>

Hi Srini,

I tried doing with the uuencode command earlier but its not working.

it gives me the below msg:
-bash: uuencode: command not found

Regards
Whizkid

Last edited by vbe; 09-22-2014 at 10:40 AM.. Reason: code in between code tags! next time will be the good one...
# 6  
Old 09-22-2014
You may try mutt,

---------- Post updated at 08:43 AM ---------- Previous update was at 08:42 AM ----------

use this

Code:
mailx -s "Todays logs $(date)" < /tmp/attacment.log   youremail.com

or if you want to be attachment.. mv the attachment.log to attachment.txt,
# 7  
Old 09-22-2014
Hi Whizkidash,

What does the following command return;

Code:
file abc.log

Also you could try the command format as follows;

Code:
`mailx -s "Todays logs $(date)" -a /tmp/attachment.log <my_email_id.com>`

Let me know how you get on.

Regards

Dave
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Unable to send attachment using mailx command

I am unable to send email with attachment using the mailx command. Without the attachment, the email goes through file. This is the command I use. Works : $ echo "Test" | mailx -s "Test" username@website.com Fails : $echo "Test" | mailx -a all-dss-accounts.txt -s "Test"... (3 Replies)
Discussion started by: nkarthik_mnnit
3 Replies

2. Shell Programming and Scripting

AT00003.bin attachment is received from mailx command.

Hi Team, I am sending a mail from Linux box as shown below. cat sample.log | mailx -s "Testing" abc.com But instead of receiving the content of sample.log in the mail i got an attachment with name AT00001.bin. After looking into the contents of log file i found that there are some... (1 Reply)
Discussion started by: Girish19
1 Replies

3. Shell Programming and Scripting

Mailx command to send attachment file

Hi, I need to send a attachment which has space in the file name as: "ABC Data Extract.txt" which is present in the location /home/projects/txt i am using /home/projects/scripts mailx -s "Sub" email_id "/home/projects/txt/ABC Data Extract.txt" but i am not getting the attachment. (7 Replies)
Discussion started by: ATWC
7 Replies

4. UNIX for Dummies Questions & Answers

Linux - mailx - attachment - via script/command

Hi I am trying to send an email using mailx with an attachment but without using uuencode. as per man page we can use -a option. I tried below command mailx -s "test" -a "/home/test/1.txt" "abc@gmail.com" but it waits for more input and i had to press ControlD which in turns print... (0 Replies)
Discussion started by: reldb
0 Replies

5. Shell Programming and Scripting

want to send .csv file as an attachment using mailx command.

want to send .csv file as an attachment using mailx command. Please help!!! (1 Reply)
Discussion started by: gagandeep
1 Replies

6. Solaris

mailx with attachment

Hi, When i used below command, i am able to send mail mailx -s "Testing mail working or not " babu.sudhakar@ymail.com" but if i want send attachment with mail,which syntax i need to follow to send a file as attachment. (3 Replies)
Discussion started by: sridhardwh
3 Replies

7. 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

8. Shell Programming and Scripting

Adding an attachment as an attachment to mailx

I don't want the attachment embedded in the mail. I would like a file attached. When I do mailx -s "Report, `date +'%D %r` " -r "Notifications" bob@bob.com < /usr/local/bin/myreport.log> /dev/null It gets embedded in my email. I want a file attachment. How do I do that? (2 Replies)
Discussion started by: guessingo
2 Replies

9. Shell Programming and Scripting

Problem with Mailx command to send mail with attachment

Hi, I am using mailx command to send a mail with attachment. It's working fine, but with attachment I am getting one extra attachment like (ATT00131.txt). I have tried to use unix2dos command also. But still I am getting the extra attachment. I am using the following code: subject="temp... (5 Replies)
Discussion started by: viswanatharv
5 Replies

10. Shell Programming and Scripting

Problem with mailx command when sending attachment.

Hi, I have tried to sent a mail with body and attachment. But the shell script got hanging while executing that command. The command is "(cat body;uuencode att1.csv)|mailx -s "Production Monitoring Report(Unix Side)" milton.yesusundaram@patni.com" where body is a file having a single line.... (2 Replies)
Discussion started by: miltony
2 Replies
Login or Register to Ask a Question