Yes, I am working on only RUBY, can you help me in this regard. I am using
selenium rc with RUBY,,i have to send an email to a id
sher...@gmail.comwhen the test case fails
> Yes, I am working on only RUBY, can you help me in this regard. I am using
> selenium rc with RUBY,,i have to send an email to a id
> sher...@gmail.comwhen the test case fails
> Thanks & Regards
> Shery
> On Thu, Apr 23, 2009 at 10:06 AM, Adam Palmblad <apalmb...@gmail.com> wrote:
> > Hi Shery,
> > Do you mean Ruby or Rails?
> > Rails involves using ActionMailer, but if you're working in pure ruby,
> > you've got a lot more options...
> > -Adam
> > On Wed, Apr 22, 2009 at 4:22 PM, Shery <sher...@gmail.com> wrote:
> >> Can anyone explain the process to send email using RUBY
On Thu, Apr 23, 2009 at 4:35 PM, Shery <sher...@gmail.com> wrote:
> Hi Adam,
> I am working on latest build of RUBY on Window XP SP2. I am not able
> to send an email to my personal domain as well as gmail.com
> Thanks & Regards
> Srihari
> On Apr 23, 1:55 pm, shery yes <sher...@gmail.com> wrote:
> > Yes, I am working on only RUBY, can you help me in this regard. I am
> using
> > selenium rc with RUBY,,i have to send an email to a id
> > sher...@gmail.comwhen the test case fails
> > Thanks & Regards
> > Shery
> > On Thu, Apr 23, 2009 at 10:06 AM, Adam Palmblad <apalmb...@gmail.com>
> wrote:
> > > Hi Shery,
> > > Do you mean Ruby or Rails?
> > > Rails involves using ActionMailer, but if you're working in pure ruby,
> > > you've got a lot more options...
> > > -Adam
> > > On Wed, Apr 22, 2009 at 4:22 PM, Shery <sher...@gmail.com> wrote:
> > >> Can anyone explain the process to send email using RUBY
I am using the script as below on windows, i have installed the Tmail using
gem. Following time out error occurs during execution, can you help me with
this.
C:/RUBY/lib/ruby/1.8/timeout.rb:60:in `rbuf_fill': execution expired
(Timeout::Error)
from C:/RUBY/lib/ruby/1.8/net/protocol.rb:132:in `rbuf_fill'
from C:/RUBY/lib/ruby/1.8/net/protocol.rb:116:in `readuntil'
from C:/RUBY/lib/ruby/1.8/net/protocol.rb:126:in `readline'
from C:/RUBY/lib/ruby/1.8/net/smtp.rb:663:in `recv_response'
from C:/RUBY/lib/ruby/1.8/net/smtp.rb:395:in `do_start'
from C:/RUBY/lib/ruby/1.8/net/smtp.rb:685:in `critical'
from C:/RUBY/lib/ruby/1.8/net/smtp.rb:395:in `do_start'
from C:/RUBY/lib/ruby/1.8/net/smtp.rb:377:in `start'
from C:/RUBY/lib/ruby/1.8/net/smtp.rb:315:in `start'
from email1.rb:11
On Thu, Apr 23, 2009 at 5:51 PM, Adam Palmblad <apalmb...@gmail.com> wrote:
> I've used TMail in the past for command line mail scripts.
> http://tmail.rubyforge.org
> Pulling together a quick example from the quickstart guide, I'd do
> something like:
> require 'tmail'
> # Example 1: create mail only in memory
> mail = TMail::Mail.new
> Net::SMTP.start('your.smtp.server', 25, 'from_domain, 'username', password) do |smtp|
> smtp.send_message mail.to_s, mail.from, mail.to
> end
> On Thu, Apr 23, 2009 at 4:35 PM, Shery <sher...@gmail.com> wrote:
>> Hi Adam,
>> I am working on latest build of RUBY on Window XP SP2. I am not able
>> to send an email to my personal domain as well as gmail.com
>> Thanks & Regards
>> Srihari
>> On Apr 23, 1:55 pm, shery yes <sher...@gmail.com> wrote:
>> > Yes, I am working on only RUBY, can you help me in this regard. I am
>> using
>> > selenium rc with RUBY,,i have to send an email to a id
>> > sher...@gmail.comwhen the test case fails
>> > Thanks & Regards
>> > Shery
>> > On Thu, Apr 23, 2009 at 10:06 AM, Adam Palmblad <apalmb...@gmail.com>
>> wrote:
>> > > Hi Shery,
>> > > Do you mean Ruby or Rails?
>> > > Rails involves using ActionMailer, but if you're working in pure ruby,
>> > > you've got a lot more options...
>> > > -Adam
>> > > On Wed, Apr 22, 2009 at 4:22 PM, Shery <sher...@gmail.com> wrote:
>> > >> Can anyone explain the process to send email using RUBY
The error message looks like it's having trouble receiving a response or
connecting to the server. Some ISPs will block port 25 - try seeing if your
mail server is available on a port besides 25.
On Thu, Apr 23, 2009 at 7:08 PM, shery yes <sher...@gmail.com> wrote:
> Hi Adam,
> I am using the script as below on windows, i have installed the Tmail using
> gem. Following time out error occurs during execution, can you help me with
> this.
> C:/RUBY/lib/ruby/1.8/timeout.rb:60:in `rbuf_fill': execution expired
> (Timeout::Error)
> from C:/RUBY/lib/ruby/1.8/net/protocol.rb:132:in `rbuf_fill'
> from C:/RUBY/lib/ruby/1.8/net/protocol.rb:116:in `readuntil'
> from C:/RUBY/lib/ruby/1.8/net/protocol.rb:126:in `readline'
> from C:/RUBY/lib/ruby/1.8/net/smtp.rb:663:in `recv_response'
> from C:/RUBY/lib/ruby/1.8/net/smtp.rb:395:in `do_start'
> from C:/RUBY/lib/ruby/1.8/net/smtp.rb:685:in `critical'
> from C:/RUBY/lib/ruby/1.8/net/smtp.rb:395:in `do_start'
> from C:/RUBY/lib/ruby/1.8/net/smtp.rb:377:in `start'
> from C:/RUBY/lib/ruby/1.8/net/smtp.rb:315:in `start'
> from email1.rb:11
> Thanks & Regards
> Shery
> On Thu, Apr 23, 2009 at 5:51 PM, Adam Palmblad <apalmb...@gmail.com>wrote:
>> Net::SMTP.start('your.smtp.server', 25, 'from_domain, 'username', password) do |smtp|
>> smtp.send_message mail.to_s, mail.from, mail.to
>> end
>> On Thu, Apr 23, 2009 at 4:35 PM, Shery <sher...@gmail.com> wrote:
>>> Hi Adam,
>>> I am working on latest build of RUBY on Window XP SP2. I am not able
>>> to send an email to my personal domain as well as gmail.com
>>> Thanks & Regards
>>> Srihari
>>> On Apr 23, 1:55 pm, shery yes <sher...@gmail.com> wrote:
>>> > Yes, I am working on only RUBY, can you help me in this regard. I am
>>> using
>>> > selenium rc with RUBY,,i have to send an email to a id
>>> > sher...@gmail.comwhen the test case fails
>>> > Thanks & Regards
>>> > Shery
>>> > On Thu, Apr 23, 2009 at 10:06 AM, Adam Palmblad <apalmb...@gmail.com>
>>> wrote:
>>> > > Hi Shery,
>>> > > Do you mean Ruby or Rails?
>>> > > Rails involves using ActionMailer, but if you're working in pure
>>> ruby,
>>> > > you've got a lot more options...
>>> > > -Adam
>>> > > On Wed, Apr 22, 2009 at 4:22 PM, Shery <sher...@gmail.com> wrote:
>>> > >> Can anyone explain the process to send email using RUBY