Problem with mailx attachment using uunendcode -m


 
Thread Tools Search this Thread
Operating Systems AIX Problem with mailx attachment using uunendcode -m
# 1  
Old 05-22-2014
Problem with mailx attachment using uunendcode -m

We've been emailing uuencode'd PDF files as attachments with mailx for quite sometime with no problems. Recently we've expanded the volume and have intermittent problems with recipients unable to open the attachment. The same file can be successfully resent at a different time.

It's been suggested we move from basic uuencode to MIME/Base64. To accomplish that we added "-m" to uuencode. The file is Base64 encoded, but rather than being an attachment to the message, it's in the body of the message as the encoded text which of course is not acceptable.

This sends the email with the PDF file as an attachment
Code:
SUBJ=$1
SENDTO=$2                                                                       
ATTACH=$3                                                                       
BODY="$( cat mailit.txt )"                                                      
baseName=$( basename $ATTACH )                                                  
                                                                      
(echo "$BODY"; uuencode $baseName $ATTACH) | mailx -s "${SUBJ}" -inN -r "$SEMAIL" "$SENDTO"

This puts the encoded text into the body of the message
Code:
SUBJ=$1
SENDTO=$2                                                                       
ATTACH=$3                                                                       
BODY="$( cat mailit.txt )"                                                      
baseName=$( basename $ATTACH )                                                  
                                                                      
(echo "$BODY"; uuencode -m $baseName $ATTACH) | mailx -s "${SUBJ}" -inN -r "$SEMAIL" "$SENDTO"

Any suggested remedies would be MUCH appreciated.

TIA
Lee Carlson
# 2  
Old 05-22-2014
I have used uuencode and mpack in the past for sending attachements as emails. The best method that I have found is to install the Perl mime lite library and write a Perl script for sending the email. There are plenty of options on how to send the email and you should be able to send it using MIME/Base64. If Perl isn't an option, check to see if mpack is installed. Perl would be the best option though.

http://www.perlmonks.org/index.pl?node_id=1071064
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Need help sending attachment via mailx

Hello, I am new to the Unix thing, and I am having trouble sending attachments via shell client putty through mailx. The command I use is $ mailx -s "Subject" user@blah.com < attachment.txt but everytime I do that it would say Cannot open attachment.txt I have the file save to my computer... (5 Replies)
Discussion started by: mrobin20
5 Replies

2. Shell Programming and Scripting

Mailx attachment not getting attached.

Hi Friends, Please help me with this problem. I have a number of split files in a directory. each split files has pdf filenames in it. pdf files are also in the same directory. I send a mail for each split files present in the directory with the pdf file mentioned in the file. I have... (4 Replies)
Discussion started by: jcebalaji
4 Replies

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

4. HP-UX

mailx with -m attachment corrupted

mailx with -m command sending emails with attachments correctly to all users except users who have email on microsoft exchange server. They are receiving attachments as garbled text in mail body (5 Replies)
Discussion started by: sankalpag
5 Replies

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

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

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

8. Shell Programming and Scripting

Problem while sending message and attachment with mailx

Hi All, I am trying to send a mail with an attachment and message. Following command I am using. (cat <messagefile> ; uuencode <attachmentfile> <attachmentfile>)|mailx -s"Subject" dave@email.com In the received mail, message body is appearing fine. But attachment is not coming. Rather... (2 Replies)
Discussion started by: nihar.dutta
2 Replies

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

10. UNIX for Dummies Questions & Answers

mail or mailx attachment

I have used the forum to determine the format required to send attachments from hp-ux 11. the problem I have is that using mailx does not attach the file, but subsititing mailx for mail on the command line attaches the file but i'm not able to specify a subject? The attachment has been convert... (3 Replies)
Discussion started by: brettmartin99
3 Replies
Login or Register to Ask a Question