Unable to see attachment in outlook express sent by UUENCODE through unix script


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Unable to see attachment in outlook express sent by UUENCODE through unix script
# 1  
Old 07-14-2010
Unable to see attachment in outlook express sent by UUENCODE through unix script

Hi,

I have written one script to send mail with attachment from my unix server, it is working fine, and i am capable to see the attachment in my lotus notes , but when i try to see the same thing in my outlook express ..it is completly garbaled.

Please advise how to see proper attachment in outlook express .

I am using outlook express 2003.

Thanks
Amit
# 2  
Old 07-14-2010
Can you please post the command that you use to send email, so that it will be easy to find any error.

Thanks,
Sameer.
# 3  
Old 07-14-2010
Hi,

I am not facing any error while sending the mails through scripts. when i try to see that mail thorough outlook express ..it's output is not good ,, the attachment are completely garbaled. but when i use lotus notes for checking these mails, attachment are fine.

even i am using this command to send mails

Code:
uuencode $FILE1 $FILE1 | mailx -s "$SUBJECT" $MAILTO

Moderator's Comments:
Mod Comment Use code tags please, ty.

Last edited by zaxxon; 07-14-2010 at 05:16 AM.. Reason: code tags
# 4  
Old 07-14-2010
Also try:

Code:
uuencode $FILE1 $FILE1 | mailx -m -s "$SUBJECT" $MAILTO

# 5  
Old 07-14-2010
why don't you use the -a option?

i know that the -a option is not available on every os
on aix, mailx is simply a hardlink of mail Smilie

but check if it's available on your system

Code:
echo | mailx -a file1 -a file2 you@mail

# 6  
Old 07-14-2010
Unable to see attachment in outlook express sent by UUENCODE through unix script

Hi,

Thanks for your help. (-m) option worked for me.

It is nice to see the result in outlook.

Thanks
Amit
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. HP-UX

Unable to send attachment with html tables in UNIX shell script

Heyy, any help would be grateful.... LOOKING FOR THE WAYS TO SEND AN EMAIL WITH ATTACHMENT & HTML TABLES IN BODY THROUGH SHELL SCRIPT (LINUX)..NOT SURE, IF WE HAVE ANY INBUILT HTML TAG OR UNIX COMMAND TO SEND THE ATTACHMENTS. KINDLY HELP below is small script posted for our understanding..... (2 Replies)
Discussion started by: Harsha Vardhan
2 Replies

2. AIX

Need to send attachment in Mail without using uuencode via script in AIX6.1

Dear All, Would some one help me with this to send a file as attachment in a mail using a script without uuencode... I am working on AIX 6.1, the thing is I dont have uuencode available... Is there any other alternate possible way to send file attachment with the mail without using uuencode... (11 Replies)
Discussion started by: msmadhan11
11 Replies

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

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

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

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

7. Windows & DOS: Issues & Discussions

Outlook Express on Windows 2000

Does anyone know where Outlook Express on Windows 2000 store the e-mails? I know where it stores on Windows XP, but I need it for Windows 2000 regards. (0 Replies)
Discussion started by: milhan
0 Replies

8. UNIX for Dummies Questions & Answers

Unix and Outlook Express

Awhile back I followed instructions in a newsletter (I don't remember which one) giving instructions on making Outlook Express very plain. Unfortunately I followed the instructions but did not make a note of the string. The last word was true. The instructions stated that if one wanted to return to... (0 Replies)
Discussion started by: MarilynNolan
0 Replies

9. Windows & DOS: Issues & Discussions

Outlook express

Where is the file where all my e-mails are stored?I know theres one file with everything in it. (3 Replies)
Discussion started by: perleo
3 Replies
Login or Register to Ask a Question