Re: [Gambas-user] smtp mail with gambas 2.20 sent mail body message and/or attached file not sowhon/opened by client

2010-05-30 Thread marco bra
> I think that the problem comes form a missing newline: can anyone try with > revision #2982 to confirm or not? Tested on Ubuntu with Thunderbird Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.3a5pre) Gecko/20100530 Shredder/3.2a1pre Now it works...! Many thanks Marco -- Linux Infinite Freed

Re: [Gambas-user] smtp mail with gambas 2.20 sent mail body message and/or attached file not sowhon/opened by client

2010-05-30 Thread Benoît Minisini
> Il giorno gio, 27/05/2010 alle 14.46 +0200, marco bra ha scritto: > > Ok i have posted all tests to you. > > > > As you can see also Evolution ( and also Outlook) loose attached file > > (the file is in the message source ) but it isn't able to open > > attachment. > > When smtp class generated

Re: [Gambas-user] smtp mail with gambas 2.20 sent mail body message and/or attached file not sowhon/opened by client

2010-05-30 Thread Leonardo Miliani
Il giorno gio, 27/05/2010 alle 14.46 +0200, marco bra ha scritto: > Ok i have posted all tests to you. > > As you can see also Evolution ( and also Outlook) loose attached file > (the file is in the message source ) but it isn't able to open > attachment. > When smtp class generated message have b

Re: [Gambas-user] smtp mail with gambas 2.20 sent mail body message and/or attached file not sowhon/opened by client

2010-05-27 Thread marco bra
Ok i have posted all tests to you. As you can see also Evolution ( and also Outlook) loose attached file (the file is in the message source ) but it isn't able to open attachment. When smtp class generated message have body message and attachment. Only kmail can open and read all the message parts

Re: [Gambas-user] smtp mail with gambas 2.20 sent mail body message and/or attached file not sowhon/opened by client

2010-05-25 Thread Benoît Minisini
> Using gambas 2.20.2-1~ppa~karmic1 on Ubuntu 9.10 > > Below the code i test. > > PUBLIC SUB pbinviaposta_Click() > DIM smtp AS NEW SmtpClient > > WITH smtp > IF NOT IsNull(smtp) THEN > ' .Alternative = FALSE > .From = "myinternalmailn...@mylocaldomain" >

Re: [Gambas-user] smtp mail with gambas 2.20 sent mail body message and/or attached file not sowhon/opened by client

2010-05-25 Thread marco bra
Using gambas 2.20.2-1~ppa~karmic1 on Ubuntu 9.10 Below the code i test. PUBLIC SUB pbinviaposta_Click() DIM smtp AS NEW SmtpClient WITH smtp IF NOT IsNull(smtp) THEN ' .Alternative = FALSE .From = "myinternalmailn...@mylocaldomain" .Subject = "My subj

[Gambas-user] smtp mail with gambas 2.20 sent mail body message and/or attached file not sowhon/opened by client

2010-05-24 Thread marco bra
Hi all, with with gambas 2.20 cannot create useful mail body message if i have also attach a file to a message all work fine if i sent only the body message or the attached file. I supposed there must be a bug about this... Do you have a working full tested example code to play with... ? Many