search for: rhizmail

Displaying 3 results from an estimated 3 matches for "rhizmail".

Did you mean: izmail
2006 Mar 14
8
email address parse
hi all how to parse such email string to a array: #-------------------------------------------- "joe black"<joe_1@joe_black.com> joe_2@joe_black.com, joe_3@joe_black.com #-------------------------------------------- seems emails from user input include various format. and i have to split them to a array. any idea? regards. -- Posted via http://www.ruby-forum.com/.
2005 Oct 13
0
Does ActionMailer support multiple configurations? Can an ActionMailer child class define a custom configuration?
...ubscribers that that sign up for the websites by mail. I would like to use the appropriate smtp server for the website. Can an ActionMailer child class set its own mail server configuration, and not affect the other ActionMailer classes? If not, it seems I will have to use an alternative, such as RhizMail. -- Thank you, Brian Takita http://freeopinion.org _______________________________________________ Rails mailing list Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org http://lists.rubyonrails.org/mailman/listinfo/rails
2006 Feb 12
0
Re: sending personalized emails efficiently
...sands), meaning that each of the emails generated >> is unique and needs its own SMTP envelope. > > If I were going to do something like this I would avoid actionmailer as it seems to not like to send that many emails very fast. I would probably fork a ruby script that uses Tmail or Rhizmail to build the mime messages and the use threads in that process to send the mails with net/smtp. You could also look at drb to run a ruby dbr server that would just wait for a request from your rails app and then have that take care of the mail build and send process. It would probably work even bet...