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


 
Thread Tools Search this Thread
Operating Systems AIX Need to send attachment in Mail without using uuencode via script in AIX6.1
# 8  
Old 06-18-2012
Any reason to not just install uuencode ?

You should be able to write an equivalent to uuencode using "iconv" with a destination character set of "uucode".
Then just add the header and trailer:

Code:
begin 644 attachment.txt
encodedtext
encodedtext
encodedtext
`
end


Last edited by methyl; 06-18-2012 at 09:33 AM.. Reason: highlight the header and trailer
This User Gave Thanks to methyl For This Post:
# 9  
Old 06-18-2012
Dear Methyl,
Due to process and time delay constraints, we are looking to solve the issue asap with other alternate way using available commands/scripts...
Meanwhile Methyl would you please explain about the "iconv" usage in getting the file attached the mail using mailx.. and also i checked and uucode is also not available..Would be of a great help..

Methyl I also tried out the below sampling.. I received the email still with the file content in the body of the message rather than attachment...

cat FILENAME | iconv -f IBM-850 -t ISO8859-1 |mailx -s "stats" mail@address.com

Last edited by msmadhan11; 06-18-2012 at 02:47 PM.. Reason: Additional Info...
# 10  
Old 06-18-2012
What about using perl or Python
Padow
# 11  
Old 06-19-2012
Dear Padow,

I ve not used perl before and I donot have any idea about perl scripting.
So for this case would be possible for u to lemme know with a sample perl script.. the links u had posted were helpful really, however i couldn figure how to customize it for my requirement.. would it be possible for u to help..

The requirement is to send a flat file as text file as an attachment in a mail to the recipients...
# 12  
Old 06-19-2012
In this context, uucode is the name of a character set. It is the character set conversion used by uuencode and uudecode .
Coincidentally there is a an AIX unix command called uucode but it has nothing to do with data conversion.

The syntax for iconv is in man iconv. There is extensive background information about the various converters on the IBM website.
Help - AIX 6.1 Information Center and search for iconv .
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

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

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

4. Shell Programming and Scripting

how to run a script using cron job and send the output as attachment via e-mail using unix

how to run a script using cron job and send the output as attachment via e-mail using unix. please help me. how my cron job entry should be? As of now my cron job entry is to run the script at specific time, 15 03 * * * /path/sample.sh | mail -s "Logs" email_id In the above entry, what... (8 Replies)
Discussion started by: vidhyaS
8 Replies

5. UNIX for Dummies Questions & Answers

How to send html file in a mail not as an attachment but it should display in the mail in table for

Hi The below script working when we are sending the html as attachment can u please guide how to send thesmae data in table form direct in the mail and not in mail attachment . cat Employee.sql SET VERIFY OFF SET PAGESIZE 200 SET MARKUP HTML ON SPOOL ON PREFORMAT OFF ENTMAP ON - HEAD... (0 Replies)
Discussion started by: mani_isha
0 Replies

6. Shell Programming and Scripting

How to send a mail with attachment?

Hi, I usually write a file TEST.MAIL like this to send mails: Importance: High Priority: Urgent X-Priority: 1 (Highest) From: user Subject: error ... text body .... and then I launch it (or writre a c-chell that launchs it) by writing: mail a@b.com < /users/.../TEST.MAIL How can... (4 Replies)
Discussion started by: albaalbetti
4 Replies

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

8. Shell Programming and Scripting

Script needed which will send a mail with attachment files

Hello, I need a shell script which need to send a mail with 4 *.csv files as attachments.Anybody can help me? At present i have a script which is sending only one file as attachments.But i need a script which send 4 files in a shot. #!/bin/ksh /bin/mail xxxx@xx.xom << EOF Subject:... (4 Replies)
Discussion started by: Mar1006
4 Replies

9. AIX

Command line/Script to send E-mail with HTML body and binary attachment

I apoligize for the cross-post but I'm not getting much in the way of help in the dummies forum: I'm trying to script sending an e-mail message on an AIX 5.x server with the following requirements: 1. command line switch to specify file name containing message body in HTML format 2. command... (3 Replies)
Discussion started by: G-Man
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