Displaying 20 results from an estimated 22 matches for "activemailing".
2006 Jul 11
0
ActiveMailer HTML + Plain Text + Attachment?
How do you do this?
Tried all the examples on the wiki, and unfortunately the trac is not
accessible right now to check the trouble tickets.
No matter what I do the mime structure seems to be incorrect.
It seems that adding an attachment to a html+plaintext message is not
possible using the standard methods. I have seen some old posting on the
mailing list about overriding the deliver method
2006 Apr 03
1
Helpers for ActiveMailer templates
What helpers, if any, should be available to a view for ActionMailer? Even
ApplicationHelper methods don''t seem to be available.
This is on Rails 1.0.
David
2006 Jul 24
5
Actionmailer sending many emails in same SMTP connection?
Hi,
I need to implement a mailing list system,
Actionmailer is great, but i haven''t found out a way to send many
(hundreds of) emails without having to reconnect to the SMTP server for
each mail when calling
Mymailer::deliver_my_mail(recipient)
Any tips?
(Possibly without calling directly Net::SMTP, so i can take advantage
of the rhtml rendering of the body)
Thanks,
Best regards,
2008 May 06
2
Can you use RSpec to test initializers?
Hi there!
I''m trying to spec out some code that will set the smtp_settings in a
custom ActiveMailer object. Basically I want to check that if my
configuration object has the right smtp_server, that the ActiveMailer
object gets set up correctly. So, my spec looks like this:
it "uses smtp server if config says so" do
2006 Nov 01
2
How to: Individualized mass email with ActiveMailer - separate thread?
Hi,
We are building a rails application that''s sort of a CRM + room/course
booking. Among other things, it provides a centralized database of all
the people the company has been in contact with.
We want to provide the possibility of sending customized email messages
to groups of contacts, for example a newsletter to 500 people starting
with "Hi [:name:]". The naive approach
2007 Mar 03
1
Mailing lists in rails?
I have a client that wants to send out a mass email to all of the
registered users. I figured I would use ActionMailer for this, but is
this suitable for mass emailing? Or is there another solution or a
better way to do this?
Thanks for your help.
--
Posted via http://www.ruby-forum.com/.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are
2008 Mar 13
2
Verify E-mail Delivery
Are there any services or ways of verifying that an e-mail is reaching
its recipient? I am using ActiveMailer and it works well but I may
need to start ensuring that e-mails are delivered to the address
specified.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this
2005 Sep 14
9
Sending Emails via Cron
I''m developing an application using RoR that will generate enough email
notifications that I don''t want them in the actual web application. So, I''m
thinking about having an outgoing queue that a cron job would pick up and
deliver. My question is if this is possible with a ruby script that uses
ActiveRecord and ActiveMailer?
2007 Feb 15
1
Has anyone run function tests on ActionMailer?
I am running function tests to see if ActionMailer mails out an email.
I have two development machines, both with rails 1.1.6. On one
machine, the ActionMailer::Base.deliveries array resets itself after
each test. On the other machine, the array keeps accumulating the
emails from the previous function tests and doesn''t clear out the
array after each test.
Both machines have identical
2008 Apr 25
6
ActionMailer
Hi all,
I need a help. I have got a user registration form, where the user signs
up and then an activation link is sent to the user email id for
activating his/her account. Now I need to send an another email to the
user, only after he logs in for the first time in my site, then the
second email should be sent. Can anybody give me some suggestion on how
to do it ??
NB: When the user clicks on
2010 Mar 07
5
Rails development processes running very slow
This is a problem I know other people have been having. I''m on Rails
2.3.5 on a dual core 2.1Ghz Macbook Pro 2.1 with 3Gb of ram and 800Mb+
inactive memory. Things should be fast. Sometimes things run slowly,
but nothing nearly as slowly as rails. irb starts in milliseconds.
Even Java maven tasks are pretty fast. Rails on the other hand takes
a pitiful 1:30 minutes to start - the
2006 Feb 08
2
ActionMailer EOFError (sometimes)
I''m having problems sending emails sometimes using ActionMailer. Looks
like some emails are never sent because something breaks when sending
it. It is a small quantity but can''t even have one drop. Browsing
through the list I saw that one person had the same error as I did but
in his case he couldn''t send any emails and in the end he needed no
authentication at all.
2006 May 15
6
Getting Net::IMAP to work with PLAIN auth type...
Hi there,
I''m new to rails and I''ve been successful tinkering around but
am miffed by the process of trying to connect to my mail server to receive
email for ActiveMailer parsing. I''m hosted on TextDrive and have read the
following article on the RubyonRails wiki:
http://wiki.rubyonrails.com/rails/pages/HowToReceiveEmailsWithActionMailer.
I want to
2006 Jul 18
1
Gmail for your domain and actionmailer
Hi, everybody
somebody knows like config actionmailer to use it with gmail for your
domain.
thanks.
--
Juan Pablo Re.
blog: http://ururails.wordpress.com/
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://wrath.rubyonrails.org/pipermail/rails/attachments/20060718/b2435a9a/attachment.html
2006 Apr 20
0
How to pass the body of the email while sending the email
Hi,
Can anybody help me out with this problem.I am using ActiveMailer of
Rails to send the email.I am able to do that without any problem but
while sending the email i want to send the body of the message and would
like to retrieve it in the confirmation email.I am not saving the entire
body message in the DB,so can anybody suggest me how to do this.
Thanks,
Chandra.
--
Posted via
2013 Mar 23
0
Rails4 and ActionMailer::Base.deliveries
Can someone who is working with Rais 4 verify
if ActionMailer::Base.deliveries returning valid data or an empty set? I''m
looking at the ActiveMailer source code and changelog and nothing jumps out
at me.
This is with the same code and configuration that worked for me in Rails
3.x but now with Rails 4.0.0.beta1 and Ruby 1.9.3p374. delivery_method is
set to :test in both my
2007 Dec 06
1
Fetcher Daemon Questions - receive???
I''m starting to play with Slantwise.com''s Fetcher to process emails via
a Ruby script.
Here''s the basic code lifted from their plugin:
[code]
class MailFetcherDaemon < Daemon::Base
@config = YAML.load_file("#{RAILS_ROOT}/config/mail.yml")
@config = @config[RAILS_ENV].to_options
@sleep_time = @config.delete(:sleep_time) || 10
def self.start
2006 Aug 04
14
Printing an Order
Can Rails be used for printing an order in a store application that has
arrived?
--
Posted via http://www.ruby-forum.com/.
2006 May 10
4
action mailer not really sending emails
I am trying to get the action mailer to send out emails from my server
(windows 2003). I configured it to the local smtp server and when I try
sending to email boxes that are on the local domain, the emails go
through. However, when I try sending emails to my gmail account, they
won''t get through. It gives me no errors. As far as I can tell there are
no firewalls on our server that
2005 Jul 07
8
Mass mail performance
How does Action Mailer perform when sending out say 3,000 emails? I
know the answer will have a lot to do with the hardware, but in general,
is Action Mailer up to the task of completing an operation like this in
reasonable time?