Displaying 20 results from an estimated 200 matches similar to: "action mailer, error Subject: Header must not be multiple"
2006 Feb 14
0
rubyforge-0.1.1
SIMPLIFY SHARING YOUR RUBYGEMS ON RUBYFORGE!
~> gem install rubyforge
SYNOPSIS
rubyforge [options]* mode [mode_args]*
DESCRIPTION
simplistic script which automates a limited set of rubyforge operations
MODES
setup()
initializes your .rubyforge directory. you need to run this first before
doing anything else.
example :
rubyforge setup
login()
2006 Apr 21
0
collection_select has_and_belongs_to_many update_attributes
I know there have been threads on this before but I was thinking
shouldn''t multiple collection_select automatically update habtm
relations when you update_attributes?
In order to get multiple collection_select to work I use:
collection_select(:user, :group_ids, Group.find(:all), :id,
:name,{},{:multiple=>'''',:name=>''group[id][]''})
In fact if I
2006 May 01
0
Same .rhtml and partial in mailer and non-mailer contexts
I have an ActionMailer template that properly generates HTML email. It
contains a partial.
The mail action was called via the following in my controller:
def cmasend
@cmaform = Cmaform.find(params[:id])
Mailer.deliver_cma(@cmaform)
flash[:notice] = ''CMA Sent.''
redirect_to :action => ''list''
end
Then, in order to allow a
2007 Oct 18
0
cruise control rb mailer / Action Mailer
I am getting this error message when the mailer tries to execute
TLS not available after start at /usr/lib/ruby/1.8/net/smtp.rb:680:in
`check_response''
any one have any idea whats going on here
--
Posted via http://www.ruby-forum.com/.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby on Rails:
2010 Jan 30
0
Action Mailer: All mail comes from MAILER DAEMON
Action Mailer: All mail comes from MAILER DAEMON.
host on slice with postfix and google app. any idea?
Please help.
Thanks.
--
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 rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
To unsubscribe from this group, send email to
2008 Sep 09
6
Prioritizing Mailer Queue / Action Mailer
Hi,
I have different kinds of mails going out. For eg:
1. signup
2. notification mails
etc
I am using mailer queue to avoid mongrels waiting on email to be sent.
However, it makes sense to have signup mails go instantaneously whereas
other mails can go to mailer queue.
Has anyone done such thing? Any suggestions please?
Regards,
SG
--
Posted via http://www.ruby-forum.com/.
2007 Aug 23
0
Mailer delivery execution question (drb or not)
When I send an email with Mailer does it get processed in a separate
detached thread (a-la background-drb) or not?
If not the follow up would be:
- Is this something that would be a future feature?
- Does anybody know of a way to get background-drb working with merb?
(it''s probably an obvious thing but I am pretty new to the project)
Thanks
Diego
2006 Nov 04
0
action mailer and IMAP
I''m trying to figure out if I can use the ActionMailer and Rails for a IMAP
reading application.
It''s not a web mail application.
But I don''t really see where the boundaries are for a Model, Controller, View.
Or is it simply that everything related to reading the email via IMAP (which is
going to be started from shell via crontab or other) is a Model and everything
2006 Jul 02
0
quotes in email address for mailer
I am trying to use the mailer to send email. I want to create a
sender and a recipient address that is in this form (note the quotes
around the sender name):
"sender name" sender@domain.com
To do this, in my sender model, I have tried something like this:
def combined_address
return "\"" + self.name + "\"" + " <" + self.email +
2006 Jul 25
0
URLs not working in Action:Mailer emails
When I include my website address in emails generated by Action Mailer
they look OK but don''t actually work.
e.g.
looks like www.mywebsite.com
but the actual URL is
x-msg//79/www.mywebsite.com
What''s this x-msg//79 ?
And how do I get rid of it?
--
Posted via http://www.ruby-forum.com/.
2006 Jul 26
0
HTML Emails with a layout in Action Mailer?
Hi,
I am using implicit HTML and text emails (alternative). So I have some
view files called mymail.text.plain.rhtml and mymail.text.html.rhtml.
Now since I have a lot of mails to send I would like to use a layout for
my HTML emails only.
How can I do that?
Regards
Till Vollmer
--
Posted via http://www.ruby-forum.com/.
2006 Jul 26
1
please tell me how to add "reply-to" header in action mailer
thanks guys
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://wrath.rubyonrails.org/pipermail/rails/attachments/20060726/ecc0170a/attachment.html
2006 Jun 14
0
named routes in mailer templates
Hi all,
Is it possible to use named routes in mailer
templates? If so how do I accomplish it?
I''ve got a named route my_route that I can use with a
controller template via my_route_url but I try the
same thing in a mailer template and it''s a no go.
Thanks,
Brent
__________________________________________________
Do You Yahoo!?
Tired of spam? Yahoo! Mail has the best spam
2006 Jun 21
0
Action Mailer and ApplicationHelper method
Hi,
sorry if this has been asked before, but I couldn''t find any info. Is
it possible to use application helper methods in ActionMailer
templates (or methods, in case this is the only way)? All I found is
one statement in the agile web development book, that ''the regular
helper methods, such as truncate(), are available''.
Is there any overview which helpers are
2006 May 05
1
hows does engines effect the default action mailer?
I installed engines to my app and now my salted login (which is not an
engine) wont send emails. Bit confused... :S
--
Posted via http://www.ruby-forum.com/.
2006 May 19
0
rake freeze_gems and mailer problem
Hi
I''m trying to deploy an app bundled with Rails 1.1 as I''m on a shared
host, but it seems to be crashing out the dispatch.fcgi processes.
I ran rake freeze_gems to get rails in my vendor directory (on a windows
box)
I added it to the svn and deployed, but got this error
./../config/environment.rb:47: uninitialized constant ActionMailer
(NameError)
from
2006 May 24
1
ActionMailer (Action Mailer) Template not found? Help!!
I have been going around on the Internet about this all day and found
absolutely nothing that seems to fit this problem.
I have a mailer named "Notifier" -- in fact I have been using the EXACT
code from the "Agile Development With Rails" chapter on "Sending
E-Mail", pp. 411-416, except for my names (mailer named "Notifier",
emailer method named
2006 May 24
0
generate mailer question
I''m trying to create a feedback form that will email me the submitted
feedback but I''m totally confused on how to achieve it. I can''t seem to
find any examples and the agile web development section on emails just
confuses me even more!
So a user types their feedback in the view
the text is captured and sent to the method and emailed to me.
Its easy so why
2006 May 30
2
No rhtml, rxml, rjs... problem with Action Mailer, again
Hi all
I have seen a lot of people writing my same problem but I haven''t found
the solution yet. This is the problem:
"ActionView::ActionViewError in Periodico#index
No rhtml, rxml, rjs or delegate template found for..."
when trying to send email through action mailer.
I have created the Notifier.rb model (in app/models/ folder)
def signupthanks(user)
# Email
2006 May 31
1
mailer - from address not being set
I''m having a weird problem with a mailer model. The from address
doesn''t seem to be set - my mail logs it shows that the sender address
is the default www@my.server.hostname and this causes the mail to
bounce.
The mailer code looks like this:
def thismail
@subject = "Subject"
@recipients = "toemail@address.com"
@from =