Displaying 5 results from an estimated 5 matches for "my_mail".
Did you mean:
my_email
2010 Feb 25
2
getaddrinfo problem
Hi;
A problem occurred in a Python script. Here is the sequence of function
calls leading up to the error, in the order they occurred.
/var/www/html/mysite.com/simplemail/mail2.py
40 </head>
41 <body>'''
42 my_mail()
43 print '''
44 </body>
my_mail = <function my_mail>
/var/www/html/mysite.com/simplemail/mail2.py in my_mail()
27 to_address = ourEmail,
28 subject = subject,
29 message = message
30 ).send()
31 print 'Thank you, %s, we will...
2006 Jan 12
3
ActionMailer bug?
Hi ,
I have actionamailer working properly with a template and a model for
creating the mail object etc. The whole thing works correctly if I use
Webrick.but when I use it on Apache,i get the error which says "template
missing".rails is unable to find the template for the mailer
object.Hasanyone noticed this?
Vivek
PS:I am still not using the 1.0 version
-------------- next part
2007 May 13
2
ActionMailer outside of Rails?
Has anyone used ActionMailer outside of rails? I have a requirement for
work that will not allow me to do this from within a rails app. I have
successfully sent an email in the following manner:
MyMailer.deliver_clever_email(someArg,''testing!'')
where the second argument is the body of the email, but when I try to
call just:
MyMailer.deliver_clever_email(someAr)
and use a
2005 Dec 24
10
can''t find view from Mailer?
Hi everyone,
Like so many other here, I too am new to Rails (and Ruby), and so far
it''s been a great experience. I haven''t been able to get around one
problem though. When trying to use the mailer, I recieve an error like
this:
ActionView::ActionViewError in Tell_friend#send_email
No rhtml, rxml, or delegate template found for send_to_friend
The scenario is this:
A form on
2005 Mar 09
8
How to set ''Return-Path'' in ActionMailer to avoid SPF failure?
...mane.org
To: jdeneut-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org
Subject: =Thank you for your bug report
Content-Type: text/plain; charset=utf-8
Message-Id: <20050309065155.301233FDA8-CkVda1wFVPjdi7ou1J7GeDGekZJkHWME@public.gmane.org>
I tried this:
class MyMailer < ActionMailer::Base
def my_mail(recipients, post)
@headers["Return-Path"] = "jdeneut-4GWaZ2qAA/nQT0dZR+AlfA@public.gmane.org"
end
end
but it doesn''t work (trying to set the ''Return-Path'' by playing with
the headers doesn''t work in JavaMail either. Java h...