Re: [Gambas-user] smtp does codified the attachment but does not show in mail reader

2016-01-22 Thread PICCORO McKAY Lenz
Benoit it worked for me setting explicy the "Alternative" prpperty to FALSE, seems documentation are very lack of the versions supported of gambas.. i understand the fashion its to use the latest version, but at my work (that has very large options of hardware) we runs many versions of gambas,

Re: [Gambas-user] smtp does codified the attachment but does not show in mail reader

2016-01-22 Thread PICCORO McKAY Lenz
ok Benoit, and dont worry if i edited the wiki i never will write as i made the mails! ¬_¬ (remenber that the mails i worte at my work and at work everything must be done for yesterday!!!) Lenz McKAY Gerardo (PICCORO) http://qgqlochekone.blogspot.com 2016-01-22 9:49 GMT-04:30 Benoît Minisini

Re: [Gambas-user] smtp does codified the attachment but does not show in mail reader

2016-01-22 Thread Benoît Minisini
Le 22/01/2016 15:14, PICCORO McKAY Lenz a écrit : > Benoit it worked for me setting explicy the "Alternative" prpperty to > FALSE, seems documentation are very lack of the versions supported of > gambas.. > > i understand the fashion its to use the latest version, but at my work > (that has very

Re: [Gambas-user] smtp does codified the attachment but does not show in mail reader

2016-01-16 Thread Benoît Minisini
Le 15/01/2016 07:33, PICCORO McKAY Lenz a écrit : > i made a program that send a pdf attachment.. but in gmail at received the > mail marks as has attachment but when opened thers no attachment file > > here the code used based on the wiki: > >Dim enviador As New SmtpClient >Dim t$ As

Re: [Gambas-user] smtp does codified the attachment but does not show in mail reader

2016-01-15 Thread PICCORO McKAY Lenz
i tested and see that the documentation said someting about SmtpClient.alternative option.. what does mean with: "are actually different alternatives of the same data"?? Lenz McKAY Gerardo (PICCORO) http://qgqlochekone.blogspot.com 2016-01-15 2:03 GMT-04:30 PICCORO McKAY Lenz

Re: [Gambas-user] smtp does codified the attachment but does not show in mail reader

2016-01-15 Thread T Lee Davidson
On 01/15/2016 08:35 AM, PICCORO McKAY Lenz wrote: > i tested and see that the documentation said someting about > SmtpClient.alternative option.. > > what does mean with: "are actually different alternatives of the same > data"?? I think that means different *formats* of the same data. For

Re: [Gambas-user] smtp does codified the attachment but does not show in mail reader

2016-01-15 Thread Buster Seven
this works for me myMail.Add(File.Load(Application.Path & "/" & "filename.pdf"), "application/pdf") On Fri, Jan 15, 2016 at 5:33 PM, PICCORO McKAY Lenz wrote: > i made a program that send a pdf attachment.. but in gmail at received the > mail marks as has attachment but

[Gambas-user] smtp does codified the attachment but does not show in mail reader

2016-01-14 Thread PICCORO McKAY Lenz
i made a program that send a pdf attachment.. but in gmail at received the mail marks as has attachment but when opened thers no attachment file here the code used based on the wiki: Dim enviador As New SmtpClient Dim t$ As String ... ' more code... ... enviador.Add(cTexto, "text/plain")