Mailx command issue


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Mailx command issue
# 1  
Old 03-17-2016
Mailx command issue

Hi All,

Im facing a problem with sending tar file via mailx command. Your help would be much appreciated.

Im trying to tar a set of CSV files in a folder using the below command

Code:
tar cvf Report.tar.gz *_03172016.CSV

and sending this tar file using mailx command as mentioned below

Code:
ux2dos Report.tar.gz | uuencode Report.tar.gz | mailx -m -s "UAT Report" "abc@hotmail.com"

The problem here is, if all the CSV files are of size 0 byte, the tar file contains all the 0byte CSV files in the email attachment.

If any of the file size greater than zero, then the attachment contains files until a non zero byte file is encountered in the alphatebetically sorted list.


PS : i tried to ftp the tar file manually to windows and chkd it, and in both cases, all the CSV s files were present in the tar.

I know its confusing..Smilie I've attached the email and the manually ftp'ed tar file for your ref

Looks like smethg is goin wrong in the mailx command.

Kindly share your inputs to fix the issue.

Also let me know if there are any other ways to zip and send all the CSV files as email attachment.

Last edited by anijan; 03-17-2016 at 06:34 AM.. Reason: missed few points
# 2  
Old 03-17-2016
tar cvf does nut produce tar.gz files, for that you need tar zcvf if your tar supports that, or use gzip separately to gzip the tar file..
ux2dos only makes sense on unix style text files, not tar files or gz files..
This User Gave Thanks to Scrutinizer For This Post:
# 3  
Old 03-21-2016
Thx @Scrutinizer. it works perfectly fine with ur solution. There is one more problem with mailx command. the email body.

Either the attachment is missing or the email body is missing. I tried the below two commands.

Code 1:
Code:
mail_bdy=`echo "Hi All,

PFA the UAT Report for ${CUR_DATE}.

Thank You."`
echo "$mail_bdy"|uuencode UAT_Report_${CUR_DATE}.zip UAT_Report_${CUR_DATE}.zip | mailx -m -s "TESTING - UAT Report ${sub_date}" XXX@gmail.com

Code 2:

Code:
uuencode UAT_Report_${CUR_DATE}.zip UAT_Report_${CUR_DATE}.zip | mailx -m -s "TESTING - UAT Report ${sub_date}" XXX@gmail.com << EOM

Hi All,

PFA the UAT Report for ${CUR_DATE}.

Thank You."

EOM

Please advise.
Moderator's Comments:
Mod Comment Please use CODE tags (note ICODE tags) for full-line and multi-line sample input, sample output, and code segments.

Last edited by Don Cragun; 03-21-2016 at 02:52 AM.. Reason: Change ICODE tags to CODE tags.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Mailx Email Issue

Hello, I am facing an issue with email in Linux. I am using mailx command to send email. When I give invalid domain address then it is taking both sender and recipient as sender email and trying to send email. Below is my command echo -e "${EMAIL_TEXT}" | mailx -v -s "${SUBJECT}" -r... (5 Replies)
Discussion started by: yuvi
5 Replies

2. Shell Programming and Scripting

Issue with Mailx command

Hi, I am trying to send an email using mailx command in Linux terminal. Though I give invalid address it is giving response as Recipient ok and sent message. My command is here. Not sure what is wrong. Can anyone please assist? echo -e 'New User'| mailx -v -s 'New User' y@gggg.com ... (1 Reply)
Discussion started by: yuvi
1 Replies

3. Shell Programming and Scripting

Need help in an issue related to mailx

Hello, I have a file temp.txt with the below contents : Sep 9 03:04:51 adcsdp01 MAPDR2_00: Unable to open trace file adpstartarv.log. (Error 110 Resource temporarily unavailable) Sep 9 03:05:35 adcsdp01 MAPDR2_00: SAP Service ADPMR2_00 successfully started. Sep 9 03:04:51 adcsdp01... (7 Replies)
Discussion started by: rahul2662
7 Replies

4. Shell Programming and Scripting

Mailx command timeout Issue

Hi All, I have a situation where we need to send out mails from our Unix server to different mailing ids inside our scripts.The mails are working fine.But we have occasional issues where we are getting time out errors from the SMTP server while sending out mails. Command that we are using... (3 Replies)
Discussion started by: DevotedPupil
3 Replies

5. Shell Programming and Scripting

Mailx issue

Hi guys I am trying to send an email using mailx function and want the message body to appear on different lines. My code is : WT=`echo "Tapes are : $x Holder are : $y" ` echo $WT|mailx -s "Alert" xyx@abc.com I want to receive the email like this: Tapes are :2 Holders are... (2 Replies)
Discussion started by: Junaid Subhani
2 Replies

6. HP-UX

[Solved] mailx : unknown user issue

Hi all, I know this issues has been discussed multiple times, i have gone through many such discussion but unfortunately i am still not able to solve the issue being faced. I have configured the sendmail.cf with the smtp host name (Editing the entry starting with DS...) Post that restarted... (7 Replies)
Discussion started by: chpsam
7 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

mailx issue -

Hi, I am sending mail inside my script based on various conditions. Here is the problem, when there are more than one condion at a time, the mailx adds the messages into one ( at the time of the second mail) example: inner_fn () { if ; then echo "inner function mail" | mailx... (3 Replies)
Discussion started by: shellwell
3 Replies

9. UNIX for Dummies Questions & Answers

Issue with file permissions when using mailx

Hiya... I've got a script on AIX 4.2 that sends an email, with an attachment, that has always worked happily in the past and has chosen today to stop working. It now throws up an error "/tmp/Rs13492: The file access permissions do not allow the specified action" The /tmp/RsXXXXX file name... (2 Replies)
Discussion started by: phaedrus
2 Replies

10. UNIX for Dummies Questions & Answers

mailx Issue with -r flag

I've used "mailx -r return@address" before many times for automated scripts, but when I try to use it on FreeBSD, I get "mailx: illegal option -- r". Is there another version of mailx I should be using to get this to work? The full command I'm trying to run is: mailx -s "Load Results $(date... (1 Reply)
Discussion started by: superdelic
1 Replies
Login or Register to Ask a Question