Re: [Gambas-user] Send mail with smtp

2010-03-24 Thread Fabien Bodard
Le 24 mars 2010 11:00, Benoît Minisini a écrit : >> Bonsoir Benoit, >> >> Peut être cela t'aidera: >> >>       http://www.etpan.org/libetpan/ > > Apparently not modified since five years. not sure look here : http://libetpan.svn.sourceforge.net/viewvc/libetpan?view=rev&revision=100 > >> >>      

Re: [Gambas-user] Send mail with smtp

2010-03-24 Thread craf
-Mensaje original- De: Benoît Minisini Reply-to: mailing list for gambas users Para: mailing list for gambas users Asunto: Re: [Gambas-user] Send mail with smtp Fecha: Wed, 24 Mar 2010 11:00:37 +0100 > Bonsoir Benoit, > > Peut être cela t'aidera: > >

Re: [Gambas-user] Send mail with smtp

2010-03-24 Thread Benoît Minisini
> Bonsoir Benoit, > > Peut être cela t'aidera: > > http://www.etpan.org/libetpan/ Apparently not modified since five years. > > http://libsmtp.sourceforge.net/ Not maintained anymore. > > http://www.gnu.org/software/gss/ Alpha software. Thanks anyway, but something bette

Re: [Gambas-user] Send mail with smtp

2010-03-23 Thread Steven James Drinnan
As a work around use sendmail as the mail transport. Just ensure the service is running. And as it is usually installed by default on a lot of Linux distributions. This is the case for the Desktop version of Fedora. Concerns to be safe do not enable the port 25 on your firewall. (if enabled you c

Re: [Gambas-user] Send mail with smtp

2010-03-23 Thread Olivier Cruilles
Mensaje original- >> De: Toni >> Reply-to: ar...@tginet.com, mailing list for gambas users >> >> Para: mailing list for gambas users >> Asunto: Re: [Gambas-user] Send mail with smtp >> Fecha: Tue, 23 Mar 2010 21:26:01 +0100 (Hora estndar romance) >

Re: [Gambas-user] Send mail with smtp

2010-03-23 Thread craf
-Mensaje original- De: Benoît Minisini Reply-to: mailing list for gambas users Para: mailing list for gambas users Asunto: Re: [Gambas-user] Send mail with smtp Fecha: Tue, 23 Mar 2010 22:28:48 +0100 > -Mensaje original- > De: Toni > Reply-to: ar...@tginet.com, mai

Re: [Gambas-user] Send mail with smtp

2010-03-23 Thread Benoît Minisini
> -Mensaje original- > De: Toni > Reply-to: ar...@tginet.com, mailing list for gambas users > > Para: mailing list for gambas users > Asunto: Re: [Gambas-user] Send mail with smtp > Fecha: Tue, 23 Mar 2010 21:26:01 +0100 (Hora estndar romance) > > < <

Re: [Gambas-user] Send mail with smtp

2010-03-23 Thread craf
-Mensaje original- De: Toni Reply-to: ar...@tginet.com, mailing list for gambas users Para: mailing list for gambas users Asunto: Re: [Gambas-user] Send mail with smtp Fecha: Tue, 23 Mar 2010 21:26:01 +0100 (Hora estndar romance) <http://p.sf.net/sfu/intel-sw-

Re: [Gambas-user] Send mail with smtp

2010-03-23 Thread Toni
Hello, Once, I came across an #575 smtp error, and it was due to the server requiring a secure smtp connection to the port 587 instead to a plain-text connection to the port 25... So, are you sure that you can use the data provided to gambas gb.net.smtp component to properly send messages from an e

[Gambas-user] Send mail with smtp

2010-03-23 Thread craf
Hi. I'm trying to send an email from my computer, using the gb.net.smtp component. The code that uses it: ' Gambas module file PUBLIC SUB Main() DIM mail AS NEW SmtpClient mail.To.Add("u...@recipient.net") mail.Subject = "Test Mail" mail.From = "u...@sender.com" mail.Host = "mail.servidor.co