Mailx attachment using uuencode issue on Outlook2013


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Mailx attachment using uuencode issue on Outlook2013
# 1  
Old 09-30-2016
Mailx attachment using uuencode issue on Outlook2013

Hello all

I am on RHEL 6.4. I have been using my bash script which mails one .csv file after zipping (myfile.csv.zip)to my Lotus Notes ID. I use
Code:
uuencode

with
Code:
mailx

to do this. Here is my command -
Code:
uuencode myfile.csv.zip myfile.csv.zip | mailx -s "Subject" mailid

. This all works very cool. Now my company is migrated to Outlook2013 from Lotus Notes. Now when the same mail is coming to outlook i do not get any attachment but in body of mail i get all encoded words beginning with
Code:
begin 640 path of the .csv file

and all junk chars. Why this is so?

After that I tried mailx with option -a to add attachment(myfile.csv.zip) and this seems coming as attachment in my outlook but when I open zip file it shows me the file with complete dir path which I do not want my users to see.

Could some one please help m if I am still use
Code:
uuencode

if not can i use get rid of absolute path coming along with the file in mail.

Thanks
Krsnadasa
# 2  
Old 09-30-2016
Its more how you used your zip tool you should look to find why you have PATH included... and htta you dont mention...
This User Gave Thanks to vbe For This Post:
# 3  
Old 09-30-2016
If you can't get uuencode to work you can try Perl.

MIME::Lite
# 4  
Old 09-30-2016
Thanks Vbe

Evenif I give relative path means I run the mailx dir where zip file is present still I get full dir path in zip file name in outlook attachment. What do you mean by htta. This was working fine with Lotus notes but not in outlook.

Hi gandolf989

I will use perl as my last option. I am still looking for something related to Bash. Is MIME is available in bash.

Thanks

---------- Post updated at 11:02 AM ---------- Previous update was at 08:51 AM ----------

Hi Vbe

You were right. That is now resolved. I need to zip the file from current dir then this does not show me the full path.

Thanks
This User Gave Thanks to krsnadasa For This Post:
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Need to send attachment without using uuencode and mutt

Hi, In my Linux am unable to send attachment to mail . Since pkgs for mutt and uuencode is not possible to install any other options for sending attachment will be useful. Tried the below options but its not working. mail -s "testmail" -a <filename> abc@mail.com cat <filename>|mail -s... (4 Replies)
Discussion started by: rogerben
4 Replies

2. Shell Programming and Scripting

uuencode and outlook attachment issue

Hello All, I am using uuencode to attach multiple zip file in one email body. The file is send to multiple recipients. I use lotus notes and can view the attachments very well and so does the gmail and yahoo recipients. Issue is with outlook users, they see attachment as garbage. This is the... (3 Replies)
Discussion started by: 47shailesh
3 Replies

3. Shell Programming and Scripting

How to send attachment without using uuencode

H All I want to send attachment in mail but I dont have uuencode installed in AIX server, there is any alternative way to send attachment in mail. (2 Replies)
Discussion started by: ns64110
2 Replies

4. Shell Programming and Scripting

Send files as an attachment without uuencode

Hi All, Is there anyway we can send files as an attachment? I tried running uuencode but its giving an error as below: $ uuencode Z1.txt Z1.txt |mailx -s "hi" abc@abc.com ksh: uuencode: not found. Null message body; hope that's ok When i gave which command then it says there is no... (18 Replies)
Discussion started by: HemaV
18 Replies

5. Shell Programming and Scripting

UUEncode Attachment Missing

Hi All, I have created a shell utility that runs various database jobs and then mail the output of the database jobs to the customers. This is a generic utility and executes almost 15 reports and sends the results out. To send the attachment I use uuencode. This had been working fine till... (4 Replies)
Discussion started by: anonymoususer45
4 Replies

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

7. UNIX for Dummies Questions & Answers

uuencode without attachment

Hi All, I'm using uuencode to send out mail from unix to lotus notes,but i dont have any attachment to send out, I'm getting this message in the body of the mail "Usage: uuencode remotedest" however if i dont use uuencode I'm not able to send out mail Please help Thanks (1 Reply)
Discussion started by: gwrm
1 Replies

8. UNIX Desktop Questions & Answers

uuencode for attachment giving problem

Hi All, I am using unix's sendmail utility to send mails with attacments. I am using the uuencode command for attachments (zip). When i send the mails to some account which is configured in the MS outook it opens/unzip the attachments with no problem. But the same attachments seems to be... (3 Replies)
Discussion started by: manojram
3 Replies

9. UNIX for Advanced & Expert Users

send attachment without uuencode

Hello - In unix, can you tell me IF there is a way to send attachments via email without using uuencode command? Thank you (3 Replies)
Discussion started by: panchpan
3 Replies

10. UNIX for Dummies Questions & Answers

Uuencode problem in mail attachment

I have a unix script that compresses a .txt file using gzip command and then sends it by mail using uuencode. This has been working fine for some time, but lately I've been experiencing some problems, as when I open the mail generated, I don't see the attachment, but instead I get a large amount... (8 Replies)
Discussion started by: mvalonso
8 Replies
Login or Register to Ask a Question