How to send multiple files from unix to lotus notes

How to send multiple files from unix to lotus notes

am 07.09.2007 06:52:21 von Guru

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 )

Re: How to send multiple files from unix to lotus notes

am 07.09.2007 11:31:40 von Janis Papanagnou

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.


------

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

------



Janis

>
> Thanks
> Gaurav ( Guru )
>

Re: How to send multiple files from unix to lotus notes

am 07.09.2007 13:41:28 von Adrian Davis

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

Re: How to send multiple files from unix to lotus notes

am 08.09.2007 02:05:03 von Bill Marcum

On Thu, 06 Sep 2007 21:52:21 -0700, 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.
>
> 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

Re: How to send multiple files from unix to lotus notes

am 11.09.2007 10:04:24 von moonhk

On 9 8 , 8 05 , Bill Marcum wrote:
> On Thu, 06 Sep 2007 21:52:21 -0700, 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.
>
> > 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 a...@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 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;

An important link to look at!


Here's an
href="http://www.codestore.net/store.nsf/unid/EPSD-587VVX">i mportant
link


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

Re: How to send multiple files from unix to lotus notes

am 21.09.2007 02:53:38 von wpghost

On Sep 11, 5:04 am, moonhk wrote:
> On 9 8 , 8 05 , Bill Marcum wrote:
>
>
>
> > On Thu, 06 Sep 2007 21:52:21 -0700, 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.
>
> > > 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 a...@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 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...@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;
>
>

An important link to look at!


> Here's an
> href="http://www.codestore.net/store.nsf/unid/EPSD-587VVX">i mportant
> link

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

Re: How to send multiple files from unix to lotus notes

am 22.09.2007 02:04:54 von Bill Marcum

On Fri, 21 Sep 2007 00:53:38 -0000, 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