similar to: Same .rhtml and partial in mailer and non-mailer contexts

Displaying 20 results from an estimated 300 matches similar to: "Same .rhtml and partial in mailer and non-mailer contexts"

2006 Jul 25
0
Errors logged but not returned to browser, WEBrick hangs
An app I''ve been developing has been chugging along nicely, but around the time I added a new join model a couple of commits ago, my development environment has been acting screwy. 1. When there''s an error, the error messages and tracebacks are not being returned to the browser. The browser keeps the connection alive indefinitely. 2. Stopping the request from the browser
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 =
2006 Apr 13
0
Action mailer ''Content-Type'' found without required MIME hea
In my application i use the actionmailer. When i send a message to myself my spamfilter noticed the following error MIME_HEADER_CTYPE_ONLY ''Content-Type'' found without required MIME headers AND MIME_HTML_NO_CHARSET RAW: Message text in HTML without charset Is there a way to fix this? Thanks in advance -- Posted via http://www.ruby-forum.com/.
2006 Apr 21
2
Action Mailer E-Mail
Two qs: 1. Does AM have to use a real e-mail addr? 2. Where can I get a free e-mail addr that has POP without SSL? -- Posted via http://www.ruby-forum.com/.