Re: [Gambas-user] SMTP Client errors - Sending Email

2013-08-21 Thread Willy Raets
On Wed, 2013-08-21 at 08:43 +0200, Rolf-Werner Eilert wrote: > > Am 20.08.2013 20:00, schrieb Willy Raets: > > On Tue, 2013-08-20 at 16:52 +0200, Rolf-Werner Eilert wrote: > >> > >> Am 20.08.2013 15:52, schrieb Marty: > >>> God Morning All, > >>> > >>> I'm using gb.smpt to send email from a Gambas

Re: [Gambas-user] SMTP Client errors - Sending Email

2013-08-20 Thread Rolf-Werner Eilert
Am 20.08.2013 20:00, schrieb Willy Raets: > On Tue, 2013-08-20 at 16:52 +0200, Rolf-Werner Eilert wrote: >> >> Am 20.08.2013 15:52, schrieb Marty: >>> God Morning All, >>> >>> I'm using gb.smpt to send email from a Gambas routine. The routine is: >>> >>> 12 Public Sub btnSend_Click() >>> 13 >>> 1

Re: [Gambas-user] SMTP Client errors - Sending Email

2013-08-20 Thread Willy Raets
On Tue, 2013-08-20 at 16:52 +0200, Rolf-Werner Eilert wrote: > > Am 20.08.2013 15:52, schrieb Marty: > > God Morning All, > > > > I'm using gb.smpt to send email from a Gambas routine. The routine is: > > > > 12 Public Sub btnSend_Click() > > 13 > > 14 Dim t$ As String > > 15 Dim email As Ne

Re: [Gambas-user] SMTP Client errors - Sending Email

2013-08-20 Thread Rolf-Werner Eilert
Am 20.08.2013 15:52, schrieb Marty: > God Morning All, > > I'm using gb.smpt to send email from a Gambas routine. The routine is: > > 12 Public Sub btnSend_Click() > 13 > 14 Dim t$ As String > 15 Dim email As New SmtpClient > 16 > 17 t$ = File.Load("/home/marty/Test.txt") > 18 > 19

[Gambas-user] SMTP Client errors - Sending Email

2013-08-20 Thread Marty
God Morning All, I'm using gb.smpt to send email from a Gambas routine. The routine is: 12 Public Sub btnSend_Click() 13 14 Dim t$ As String 15 Dim email As New SmtpClient 16 17 t$ = File.Load("/home/marty/Test.txt") 18 19 With email 20.Add("Hello") 21.Add(t$, Mime