Tagged Questions
The express way to send mail from Ruby.
11
votes
5answers
3k views
What is the deal with the pony in Python community?
Pony references are in several places:
http://www.mail-archive.com/python-dev@python.org/msg44751.html
http://pypi.python.org/pypi/django-pony/
http://djangopony.com/
Is there a cultural reference ...
9
votes
3answers
11k views
Contact form in ruby, sinatra, and haml
I'm new to all three, and I'm trying to write a simple contact form for a website. The code I have come up with is below, but I know there are some fundamental problems with it (due to my ...
4
votes
2answers
80 views
Rails Mailer Ubuntu
In my rails application (running on a mac), I'm using a gem called pony. When I create a message through pony I get the following output (out of a rails console).
#<Mail::Message:2186559360, ...
4
votes
1answer
71 views
Rails devise mail
Im trying to override devise in order to send mail to activate a user. In the create method in the registrations controller i have this
urlEmail = resource.email.sub('@','-')
Pony.mail(
:to ...
4
votes
1answer
793 views
Trouble sending html in email with Pony gem
I've found this gem to be a great and easy way to send mail but I can't seem to send any html in it. If I write the following:
Pony.mail(
:to => message[:to],
:from => @account[:from],
...
2
votes
1answer
86 views
Pony and Sequel associations conflict?
I've run into an issue when using Pony and Sequel in a Sinatra application.
Without Pony everything goes just fine, but just requiring Pony sequel's associations break.
Here's my models for a blog:
...
1
vote
2answers
115 views
pony doesn't send email to gmail address?
I've got an entry form that asks for a persons name and email address. I save that email address to the session so I can access it after the form has been submitted. Then I use Pony to send a thank ...
1
vote
1answer
505 views
Sending email with attachments in Ruby with the Pony Gem
I am writing a script that is going to be sending out emails to a list of people and with this email there is going to be an attachment.
I keep running into this issue:
...
1
vote
4answers
3k views
Deploying Sinatra app on Dreamhost/Passenger with custom gems
I've got a Sinatra app that I'm trying to run on Dreamhost that makes use of pony to send email. In order to get the application up and running at the very beginning (before adding pony), I had to gem ...
0
votes
1answer
32 views
Testing Email w/ Pony and RSpec in Rails 3.1
I tried using this How do I test Pony emailing in a Sinatra app, using rspec? to test a Rails 3.1 app sending emails. The sending works fine, but I'm having a hard time getting the tests to work. ...
0
votes
2answers
49 views
To minimize memory usage, should I choose Pony's :sendmail or :smtp mode?
I'm using the Pony gem to send emails. Assuming that I have both options open to me, is there a memory advantage to using :smtp or :sendmail?
Option 1: smtp
Here, Ruby connects directly to the SMTP ...
0
votes
2answers
53 views
How do I test Pony emailing in a Sinatra app, using rspec?
I'm trying out email_spec, which says it supports Pony, but I'm not sure how I'd go about testing emails in a sinatra app. The examples in the readme show usages with rails ActionMailer, but not in ...
0
votes
1answer
71 views
How can I attach a file as an option in Pony and Sinatra?
I have problem in attaching a file as an option in Pony and Sinatra, how can I specify attachment options in Pony?
0
votes
1answer
110 views
Sending HAML emails with Pony
Sinatra 1.2.6 / Haml 3.1.2 and Pony
I am getting "wrong number of arguments error (0 for 1)" which points to
sinatra/base.rb
def haml(template, options={}, locals={})
render :haml, template, ...
0
votes
0answers
37 views
Web hosting with unlimited disk space and MySQL [closed]
I plan on using MySQL in some web projects. I know Yahoo has unlimited disk space for their hosting but they didn't say anything about MySQL so do they have it or not? And if so then how do I set up ...
0
votes
1answer
239 views
Using Ruby Pony to send emails on RHEL 5.3 I get error NameError - uninitialized constant Net::SMTP::OpenSSL:
I have a Ruby sinatra application am using Pony to send emails. It works fine from my windows box. But after deploying to RHEL 5.3 server I get following errors.
NameError - uninitialized constant ...
0
votes
1answer
354 views
RUBY: Pony email attachment error
Pony.mail(:to => ad.to_s, :via => :smtp, :via_options => {
:address => 'smtp.gmail.com',
:port => '587',
:enable_starttls_auto => true,
...
0
votes
2answers
772 views
Does Pony support SSL/TLS for GMail (Yes!)
Does the Pony gem support e-mail with SSL/TLS? I'm trying to (easily) send e-mail with Google Apps on Heroku.
Thanks!
After jumping through several hoops, I found a combination of solutions that ...