search for: ordermail

Displaying 10 results from an estimated 10 matches for "ordermail".

Did you mean: ordermap
2006 Jul 19
4
Rails crashes my fcgid/fastcgi/scgi on apache2/lighttpd :<
...fastcgi running with lighttpd, every time. Here is the action from the controller: ------------------- def crashme @orders = Order.find(:all, :order => "`id` ASC", :offset => 0, :limit => 200) emails_array = Array.new @orders.each{ |order| a_email = OrderMailer.create_a(order, price, pre_tax_price, sales_tax) emails_array << a_email if order.confirmed_email? verification_email = OrderMailer.create_a_verification (order, pre_tax_price, sales_tax) emails_array << verification_email end } flas...
2006 May 09
1
Emailcontewnt problem
I ma facing problems regarding the email-set-contentent I am writing the total code for order1= Order.find_get_details(params[:ses_value]) #render_text order1.size order=order1[0] email.set_content_type("text/html") email = OrderMailer.create_confirm(order) email.set_content_type("text/html") email = OrderMailer.deliver_confirm(order) #email = OrderMailer.deliver_confirm(order) render(:text => "<pre>" + email.encoded + "</pre>") Please help me to solve this problem Thanks and Rega...
2006 May 09
1
Email -Content type is not set to html
Hi to ROR! I could not change the email content type to text/html What is the problem! order1= Order.find_get_details(params[:ses_value]) #render_text order1.size order=order1[0] email = OrderMailer.create_confirm(order) email.set_content_type("text/html") email = OrderMailer.deliver_confirm(order) email.set_content_type("text/html") Alwas it shows only plain format only what is the reason! Thnaks and Regards, Kumar -- Posted via http://www.ruby-forum.com/.
2006 May 17
8
Html Email Problem
...;/td></tr></html> code in the confirm .html In the mail i got total code same format what is the wrong I am also sending the total code in the controller also. order= Order.find_session(params[''ses_value'']) order = Order.find_by_name("admin") email = OrderMailer.create_confirm(order) email.set_content_type("text/html") render(:text => "<pre>" + email.encoded + "</pre>") OrderMailer.deliver_confirm(order) I also saw the message i.e content type has changed to text/html What is the problm I searching for solu...
2008 Nov 30
4
ActionMailer weirdness: bad html '=3d' for all '='
I am getting html output in my email body with spurious characters that cannot be rendered, so that my links are not handled properly. What am I not getting here? My email body contains: -----------------clip------------- <A href=mailto:&quot;<%=h(''support-t1rxLZ7CIXjQT0dZR+AlfA@public.gmane.org'')%>? Support&quot;>Support</A><br/> with any
2006 Feb 19
2
Missing text/html content in production (but not development)
...igure out what''s going wrong. Can anyone suggest anything? Here''s the mail-generation method that''s being invoked (from another, public method) in my controller: private def generate_mailing_label_email label = create_mailing_label(@order) OrderMailer::deliver_mailing_label_message(@order, @person, label) end And here is the method that''s defined in OrderMailer < ActionMailer::Base: def mailing_label_message(order, person, label) @recipients = person.email_address @subject = "Mailing label for MyS...
2006 Aug 15
0
ActionMailer
Im trying to send an email see the code below: Model: order_mailer.rb class OrderMailer < ActionMailer::Base def send_an_email() @recipients = "myadress@isp.co.uk" @from = "myaddress@isp.co.uk" @subject = "Ruby Test" @body = "The Body" end end View: send_an_email.rhtml <p>Email was sent!.</p> Controller: A...
2005 Dec 19
0
Re: Rails Digest, Vol 15, Issue 392
...ly realized that I should return to the first technique, passing both the label and the HTML as parameters to the confirmation_message method. This meant generating the HTML before I actually created the message. This seems to work quite nicely. In practice, this looks like the following: class OrderMailer < ActionMailer::Base def confirmation_message(person, label, html) @recipients = person.email_address @from = "orders-NKvcMekWyJVWk0Htik3J/w@public.gmane.org" @subject = "Thank you for ordering from MyDomain.com"...
2006 Aug 16
3
Validate your forms with a table-less model
...not saving to a database table. My code in the controller is this at the moment and this works but if the validation fails it just displays the flash message i have provided, not highlighting the boxes in red. def contact @contact = Contact.new(params[:contact]) if @contact.valid? OrderMailer::deliver_send_an_email() # notice the ''deliver_'' prefix flash[:notice] = ''Query was successfully created.'' redirect_to :action => ''contactus'' else flash[:notice] = ''Query was not successfully created.'...
2007 Feb 04
10
Spec''ing ActionMailer
Good morning (Pacific Time). I have a controller action that, as a side-effect, sends an email to an administrator. I want it to do something like this: specify "when someone successfully signs up, an email should be sent to the administrator with the person''s contact page" do post :signup, {...lots o'' params} response should_be success #