|
Home > Archive > Unix Shell > September 2007 > How to send multiple files from unix to lotus notes
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
How to send multiple files from unix to lotus notes
|
|
|
| Hi
I want to send multiple files as attachment from unix HP to lotus
notes, i am using following code, but it only sends one file and
create junk character for second file embedded in body,
Please help.
uuencode gaurav.txt gaurav1.txt > gaurav1.txt;uuencode
get_env_parm.txt get_env_parm.txt1.txt > get_env_parm.txt2.txt;cat
get_env_parm.txt2.txt gaurav1.txt | mailx abc@xyz.org
Thanks
Gaurav ( Guru )
| |
| Janis Papanagnou 2007-09-07, 7:23 am |
| Guru wrote:
> Hi
> I want to send multiple files as attachment from unix HP to lotus
> notes, i am using following code, but it only sends one file and
> create junk character for second file embedded in body,
>
> Please help.
[reformatted code for clarity]
> uuencode gaurav.txt gaurav1.txt > gaurav1.txt
> uuencode get_env_parm.txt get_env_parm.txt1.txt > get_env_parm.txt2.txt
> cat get_env_parm.txt2.txt gaurav1.txt | mailx abc@xyz.org
There seems to be some extra information necessary to separate the
attachments.
If I send attachments my mail client creates some additional header
information and separated attachments, each with its own header data.
---<snip>---
[...mail header...]
MIME-Version: 1.0
To: [mail address]
Subject: two attachments
Content-Type: multipart/mixed;
boundary="------------060708080201020404090309"
X-Provags-ID: [...]==
Envelope-To: [mail address]
This is a multi-part message in MIME format.
--------------060708080201020404090309
Content-Type: text/plain; charset=us-ascii; format=flowed
Content-Transfer-Encoding: 7bit
--------------060708080201020404090309
Content-Type: text/plain;
name="NAME 1"
Content-Transfer-Encoding: 7bit
Content-Disposition: inline;
filename="NAME 1"
[here is attachment 1]
--------------060708080201020404090309
Content-Type: text/plain;
name="NAME 2"
Content-Transfer-Encoding: 7bit
Content-Disposition: inline;
filename="NAME 2"
[here is attachment 2]
--------------060708080201020404090309
---<snip>---
Janis
>
> Thanks
> Gaurav ( Guru )
>
| |
| Adrian Davis 2007-09-07, 7:23 am |
| > Hi
> I want to send multiple files as attachment from unix HP to lotus
> notes, i am using following code, but it only sends one file and
> create junk character for second file embedded in body,
>
Try using "mutt" (www.mutt.org).
Regards,
=Adrian=
| |
| Bill Marcum 2007-09-07, 7:36 pm |
| On Thu, 06 Sep 2007 21:52:21 -0700, Guru
<guru1309@gmail.com> wrote:
>
>
> Hi
> I want to send multiple files as attachment from unix HP to lotus
> notes, i am using following code, but it only sends one file and
> create junk character for second file embedded in body,
>
> Please help.
>
> uuencode gaurav.txt gaurav1.txt > gaurav1.txt;uuencode
> get_env_parm.txt get_env_parm.txt1.txt > get_env_parm.txt2.txt;cat
> get_env_parm.txt2.txt gaurav1.txt | mailx abc@xyz.org
>
> Thanks
> Gaurav ( Guru )
>
Perhaps if you add a blank line between the uuencoded files.
{ uuencode gaurav.txt gaurav1.txt
echo
uuencode get_env_parm.txt get_env_parm.txt1.txt; } | mailx abc@xyz.org
Or use whatever MIME tools are available, like mutt or mpack.
Do you really need to encode a plain text file? (maybe you do, if it
contains non-ASCII characters or lines longer than 80 characters).
--
Imitation is the sincerest form of television.
-- Fred Allen
| |
| moonhk 2007-09-11, 7:18 am |
| On 9 8 , 8 05 , Bill Marcum <marcumb...@bellsouth.net> wrote:
> On Thu, 06 Sep 2007 21:52:21 -0700, Guru
>
>
>
> <guru1...@gmail.com> wrote:
>
>
>
>
>
> Perhaps if you add a blank line between the uuencoded files.
> { uuencode gaurav.txt gaurav1.txt
> echo
> uuencode get_env_parm.txt get_env_parm.txt1.txt; } | mailx a...@xyz.org
> Or use whatever MIME tools are available, like mutt or mpack.
> Do you really need to encode a plain text file? (maybe you do, if it
> contains non-ASCII characters or lines longer than 80 characters).
>
> --
> Imitation is the sincerest form of television.
> -- Fred Allen- -
>
> - -
Try using Mime-Version: 1.0; Content-type: multipart/mixed;
boundary="frontier"
#cat body_gen.html
From: moon_ils-se@yahoo.com.hk,
To: moon_ils-se@yahoo.com.hk,
cc: moon_ils-se@yahoo.com.hk,
bcc: moon_ils-se@yahoo.com.hk,
Subject: A simple html test
Mime-Version: 1.0;
Content-type: multipart/mixed; boundary="frontier"
--frontier
Content-Type: text/html; charset="ISO-8859-1";
Content-Transfer-Encoding: 7bit;
<html>
<h2>An important link to look at!</h2>
Here's an <a>
href="http://www.codestore.net/store.nsf/unid/EPSD-587VVX">important
link</a>
</html>
--frontier
Content-Type: text/plan; charset="ISO-8859-1";
Content-Transfer-Encoding: 7bit;
cat body_gen.html > send.tmp
echo "\n\n" >> send.tmp
uuencode top.txt file.txt >> send.tmp
uuencode top.txt file2.txt >> send.tmp
cat send.tmp | sendmail $ME <- Your Address
| |
| wpghost@gmail.com 2007-09-21, 1:27 am |
| On Sep 11, 5:04 am, moonhk <moon_ils...@yahoo.com.hk> wrote:
> On 9 8 , 8 05 , Bill Marcum <marcumb...@bellsouth.net> wrote:
>
>
>
>
>
>
>
>
>
>
>
>
> Try using Mime-Version: 1.0; Content-type: multipart/mixed;
> boundary="frontier"
>
> #cat body_gen.html
> From: moon_ils...@yahoo.com.hk,
> To: moon_ils...@yahoo.com.hk,
> cc: moon_ils...@yahoo.com.hk,
> bcc: moon_ils...@yahoo.com.hk,
> Subject: A simple html test
> Mime-Version: 1.0;
> Content-type: multipart/mixed; boundary="frontier"
> --frontier
> Content-Type: text/html; charset="ISO-8859-1";
> Content-Transfer-Encoding: 7bit;
> <html>
> <h2>An important link to look at!</h2>
> Here's an <a>
> href="http://www.codestore.net/store.nsf/unid/EPSD-587VVX">important
> link</a>
> </html>
> --frontier
> Content-Type: text/plan; charset="ISO-8859-1";
> Content-Transfer-Encoding: 7bit;
>
> cat body_gen.html > send.tmp
> echo "\n\n" >> send.tmp
> uuencode top.txt file.txt >> send.tmp
> uuencode top.txt file2.txt >> send.tmp
> cat send.tmp | sendmail $ME <- Your Address
I have the same problem.
Has anybody successfully sent an e-mail with more than one attachment
using uuencode?
Notes can just recognize the first attachment. GMail is even worst, it
doesn't recognize any attachment.
[]'s Paulo Silvestre Schmitt.
| |
| Bill Marcum 2007-09-21, 7:22 pm |
| On Fri, 21 Sep 2007 00:53:38 -0000, wpghost@gmail.com
<wpghost@gmail.com> wrote:
>
>
> I have the same problem.
> Has anybody successfully sent an e-mail with more than one attachment
> using uuencode?
> Notes can just recognize the first attachment. GMail is even worst, it
> doesn't recognize any attachment.
> []'s Paulo Silvestre Schmitt.
>
Use MIME, send each file in a separate email, or tar or zip the files.
--
I have great faith in fools -- self confidence my friends call it.
-- Edgar Allan Poe
|
|
|
|
|