If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Data Access, Manipulation & Batch Languages > Unix Shell Scripts > on AIX 4.3 or 5.2L, how to send email with binary file attactment?

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 11-12-03, 05:15
r390gt1 r390gt1 is offline
Registered User
 
Join Date: May 2003
Posts: 27
Question on AIX 4.3 or 5.2L, how to send email with binary file attactment?

on AIX 4.3 or 5.2L, how to send email with binary file attactment like tgz or image?

I can able to use the following command to send email with text file attachment (better said, it just concat my file into content of the email)
mailx -s "my message" myemail@mydomain.com < myfile.txt

however, I can't use it to send binary file like image or tgz file.....
anyone know how?

also, is it possible to send a single email with multiple files attachment?


thanks in advance :-)
Reply With Quote
  #2 (permalink)  
Old 11-12-03, 09:48
gurey gurey is offline
Registered User
 
Join Date: Aug 2003
Location: Argentina
Posts: 780
Re: on AIX 4.3 or 5.2L, how to send email with binary file attactment?

Quote:
Originally posted by r390gt1
on AIX 4.3 or 5.2L, how to send email with binary file attactment like tgz or image?

I can able to use the following command to send email with text file attachment (better said, it just concat my file into content of the email)
mailx -s "my message" myemail@mydomain.com < myfile.txt

however, I can't use it to send binary file like image or tgz file.....
anyone know how?

also, is it possible to send a single email with multiple files attachment?


thanks in advance :-)
Hi,

Please test with:

mailx -s "Subject" name@name.com <<EOF
`uuencode opentab one_file.txt`
`uuencode opentab two_file.txt`
EOF

Gustavo.
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On