Linux - mailx - attachment - via script/command


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Linux - mailx - attachment - via script/command
# 1  
Old 06-26-2014
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
Code:
 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 EOT and finally email comes with attachment.

I want to avoid this manual intervention so that email can go with just a command in script.

Pls help what i need to do.

---------- Post updated at 01:00 AM ---------- Previous update was at 12:45 AM ----------

Nevermind, I was able to make it working with below.
Code:
mailx -s "test" -a "/home/test/1.txt" "abc@gmail.com" < /dev/null

See in previous command it was waiting for email body and i am able to give as above way as null

It worked fine and i got the email with attachment and empty body.

Last edited by vbe; 06-26-2014 at 05:27 AM.. Reason: code tags
 
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. Shell Programming and Scripting

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 cat abc.log | mailx -s "Todays logs $(date)" <my_email_id.com> Regards Whizkid Please use code tags next time for... (14 Replies)
Discussion started by: whizkidash
14 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