send email with seaside

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
5 messages Options
Reply | Threaded
Open this post in threaded view
|

send email with seaside

Simon De Baets
Hello,

I build a website with seaside3 / pharo.  I want to send email to the users of my website but i don't know how can i do this. So how can i send an email with seaside?

Thanks,
Simon

_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
Reply | Threaded
Open this post in threaded view
|

Re: send email with seaside

Philippe Marschall
2010/10/17 Simon De Baets <[hidden email]>:
> Hello,
>
> I build a website with seaside3 / pharo.  I want to send email to the users
> of my website but i don't know how can i do this. So how can i send an email
> with seaside?

Nice timing. You need a mail server and the latest Seaside-Email and
Seaside-Pharo-Email (just update them manually).
 1. add a WAEmailConfiguration to your application
  1.1 to go /config
  1.2 go to your application
  1.3 under "Possible parents:" add WAEmailConfiguration
 2. Configure you mail server under EMail, you mail have to open the page again.
 3. (WAEmailMessage
            from: (WAEmailAddress address: '[hidden email]'
username: 'Simon De Baets')
            to: (WAEmailAddress address:
'[hidden email]' username: 'Seaside - general
discussion')
            subject: 'send email with seaside')
            body: (WAStringEmailBody string: 'Hello,

I build a website with seaside3 / pharo.  I want to send email to the
users of my website but i don't know how can i do this. So how can i
send an email with seaside?

Thanks,
Simon');
            message send

Cheers
Philippe
_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
Reply | Threaded
Open this post in threaded view
|

Re: send email with seaside

Paul Wilke
Hello,
I'm using Pharo 1.3 and Seaside 3.0 and I was testing to send emails using ssl/tls (i.e. via googlemail). In the advanced configuration I have set up the port and entered the authentication settings but I'm getting a timeout. I think it's because the encryption is not working or what else could it be?
I would be thankful if someone could give me a hint.
Thanks,
Paul
Reply | Threaded
Open this post in threaded view
|

Re: send email with seaside

patmaddox
Pharo doesn't do TLS. You need to use something like stunnel to send emails via gmail.

Pat

On Nov 9, 2011, at 8:26 AM, Paul Wilke wrote:

> Hello,
> I'm using Pharo 1.3 and Seaside 3.0 and I was testing to send emails using
> ssl/tls (i.e. via googlemail). In the advanced configuration I have set up
> the port and entered the authentication settings but I'm getting a timeout.
> I think it's because the encryption is not working or what else could it be?
> I would be thankful if someone could give me a hint.
> Thanks,
> Paul
>
> --
> View this message in context: http://forum.world.st/send-email-with-seaside-tp2998911p4020349.html
> Sent from the Seaside General mailing list archive at Nabble.com.
> _______________________________________________
> seaside mailing list
> [hidden email]
> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside

_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
Reply | Threaded
Open this post in threaded view
|

Re: send email with seaside

Paul DeBruicker
On 11-11-09 09:41 AM, Pat Maddox wrote:
> Pharo doesn't do TLS. You need to use something like stunnel to send emails via gmail.
>
> Pat

Or set up a mail server on your machine to communicate with Gmail.  Then
Seaside would send them to your server and your server would send them
through gmail.



_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside