Displaying 20 results from an estimated 50000 matches similar to: "email notification"
2012 May 06
3
ActionMailer Linode
Hi Guys,
I created a mail server at Linode.
I would like to configure my rails app to send mails using one of this mail
accounts.
Does anybody know any tutorial about how to do it?
Thx
Bruno Meira
--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to
2013 Nov 28
1
Create email and grep the recieved emails.
I want to implememt auto mated email generation for every transaction.
And then we will sent any uplods through our own emails. i wnat grep
those email with attachments.
This is very urgent for me. if any one know this please let me know.
Thankyou for advance.
Actually in paperlesspipeline they are did same functionslity. if you
want check this url http://paperlesspipeline.com/
I
2013 Jun 25
1
Broken URLs to guides and APIs on rubyonrails.org
This is some feedback for rubyonrails.org. My apologies if this is the
wrong forum to bring this up, but I wasn''t able to find a "Contact us" link
on the site.
As of this writing, if I go to Google and search for "active record
observer validations", the top 2 results are:
http://guides.rubyonrails.org/active_record_validations_callbacks.html
and
2013 May 07
3
validates :uniqueness apparently doesn't
ruby 2.0.0p0 (2013-02-24 revision 39474) [x86_64-darwin12.3.0]
Rails 3.2.13
I have a validates ... :uniqueness constraint on one of the attributes
of an ActiveRecord class.
In my test suite, I set the attribute from the same attribute in a
record in the fixture. I then send invalid? to the object under test.
invalid? returns _false_, and the .errors object for the record shows no
errors.
A
2011 Dec 17
3
Receive a notification when the user open an email - Ruby On Rails
I building an application using rails, and I wanna know if is possible
to write a code which allows me to be notified or something like that
when the user open an email sent through my application. I need to track
that information. When I sent an email, I need know. The question to be
answered by my app is "Did they read it?"
Tips in others languages would be ok to me!
Thanks in
2011 Jul 26
1
ActiveRecord has_many associations
Given the models Country, State, City and Person as follows.
class Country < ActiveRecord::Base
has_many :states
end
class State < ActiveRecord::Base
belongs_to :country
has_many :cities
end
class City < ActiveRecord::Base
belongs_to :state
has_many :people
end
class Person < ActiveRecord::Base
belongs_to :city
end
Is there any way that doesn''t allow to delete
2010 Jun 19
1
Is validates_presence_of() deprecated in Rails 3?
Just wondering if validates_presence_of() has been deprecated in
favour of validates(:name, :presence => true) or we can prefer to use
any?
Asking so, since NetBeans 6.9 shows a deprecation warning, however I
can not find any such deprecation message in documentations/code of
Rails 3.0.0.beta4 and on web.
--
You received this message because you are subscribed to the Google Groups "Ruby
2012 Oct 08
11
Problems setting gmail mail
Hello,
as attachment my problems concerning gmail Mailer errors in Rails. I
hope anyone can help me out with the problem?
If there is extra information needed, please tell me what you need more
to help me out of my problems!
Greetings!
Attachments:
http://www.ruby-forum.com/attachment/7790/errnoECONNREFUSED.jpg
--
Posted via http://www.ruby-forum.com/.
--
You received this message
2012 Apr 18
1
Re: validates_uniqueness_of question
Hi All,
I am trying write a validation rule where I need to ensure that when a
certain value is updated or created in a particular columns, a number of
other columns columns are unique and that another column does not contain a
certain value.
I have been able to use the validates_uniqueness_of :column_a (to be
updated or inserted) with , :scope =>
[ :column_b , :column_c , :column_d ]
2012 Feb 01
12
date validation in rails 3
consider scenario,
User model with name, birth_date fields (here birth_date is not mandatory
field)
inside view form birth_date is assigned as ''31/31/1985'' which is invalid
ideally user object should be invalid and while save raise an error on
birth_date field but that''s not happening and user object gets saved with
birth_date as blank which is completely misleading.
2013 Apr 21
5
Where to find info about seed.rb, db:seed functionality?
There is no any mention about it neither in API nor in Guide. How to use
these features? The only gist with two sentences is in db/seed.rb file.
That''s really not enough.
--
Posted via http://www.ruby-forum.com/.
--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To unsubscribe from this group and stop receiving emails
2011 Aug 03
14
[root :to => "home#index"] not working
I have done the changes in the file config/routes.rb as mentioned in the
Rails Guides tutorial, but when I try to open:
http://localhost:3000
the page is not opening. It is giving error.
--
Posted via http://www.ruby-forum.com/.
--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to
2011 Feb 28
6
How do I stop email from being delivered in the interceptor?
Hi,
I am developing a rails 3 application.
I want to use a interceptor before delivering emails.
If a conditions meets, I want to stop the email.
How do I do that?
Thanks.
Sam
--
Posted via http://www.ruby-forum.com/.
--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to
2012 Jul 19
5
ActiveScaffold Export file - Send as Email
I am using Rails 1.2.3 and Active scaffold 1.1.1
My requirement is to send the export of users data weekly to the admin
as email via cron.
How can i automate the process of exporting csv and storing it at a
place? So that i can pick it from there and attach to the email before
sending?
--
Posted via http://www.ruby-forum.com/.
--
You received this message because you are subscribed to the
2011 Feb 11
1
Real-time web traffic alert notifications (email or SMS) on the cheap?
I''m a big fan of New Relic. One of the services they provide is alerts
when your traffic goes up unexpectedly above a predetermined level.
Does anyone have a favorite, inexpensive "traffic alert" tool that can
be used on a small site--a site that''s not yet big enough for monthly
payments of $150 for New Relic Silver (or even the $36 price tag for New
Relic Silver on
2010 Mar 05
15
Three submits, one controller
I have a ''new'' page with a submit for creating stories. On the ''show''
page the submit allows a user to enter comments. I now want a ''edit''
page for the stories with another submit for updates. I have used the
''create'' and ''update'' methods in the stories_controller on the ''new'' and
2010 May 10
7
NilClass passed to partial view
Hi,
I have a simple program that tries to do something really basic.
First, I have a company Model :
-------------------------------------
class Company < ActiveRecord::Base
has_one :billingAddress, :foreign_key=>"id", :class_name=>"Address"
end
Then I have the address Model :
--------------------------------------
class Address< ActiveRecord::Base
belongs_to
2013 May 09
7
why i am getting this error
hi!! i am a newbie in ROR, I am getting this error i understand what the
error says but don''y know why i am getting this error.
ActiveRecord::StatementInvalid in UserController#new
Mysql::Error: Table ''user.users'' doesn''t exist: SHOW FULL FIELDS FROM
`users`
def new
@user = User.new
end
def edit
my user controller file contains :-
class
2011 Aug 12
9
What is Ruby on Rails able to do?
Hello Everybody,
I am starting with Rails and I am wandering questions about Rails
possibilities. Actually, I want to design an application that has
particular needs and I would like to know wether Rails can do them. As I
am newbie with Rails, I ask you these questions.
Basically, it is possible to execute shell commands from a rails pages
(eg: I want to launch a c++ program)?
Can it define a
2009 Dec 30
9
Oracle adapter problem? How to fix this?
Hi,
My setup is:
Ruby 1.8.6
Rails 2.3.5
activerecord-oracle-adapter (1.0.0.9250)
I upgraded Rails and the adapter recently and I just went through hell
trying to find a problem while inserting a record in a table.
Rails was giving me this error:
OCIError (ORA-02289: sequence does not exist):
stmt.c:539:in oci8lib.so
c:/ruby/lib/ruby/site_ruby/1.8/oci8.rb:753:in `exec''