Rails 3 - Send Mails, Request request progress using ajax - ruby-on-rails

i want to use Rails 3 to send a relatively large amount of emails to a couple of recipients. The email functionality is basically implemented, so that's not the matter here.
My problem is that this amount of emails is sent relatively slow. So i want to give the user a little feedback using AJAX. Now this feedback should be unique for each user of course. My first thought was to create a helper class which sends these mails using a thread and a method for requesting the progress. Problem is, how can I make this functionality unique to each user per session?
I'm new to Rails and have absolutely no idea, I think some kind of Stateful Session Bean (like EJB) should make it. Does Rails or one of its addons offer something like that?
Sorry for my english, it's a bit rusty. :)

may be this help sidekiq_mailer
this adds to your ActionMailer classes the ability to send mails asynchronously.

Related

Sending newsletters with SendGrid and Rails - What is the best approach?

I have a rails app with sendgrid API setup and I can send transactional emails just fine. Now I want to be able to send newsletters but I'm a bit confused about the flow and how to keep track of which users want to unsubscribe from the newsletter.
The way I was considering doing this is when a use signsup to automatically send a request to the SendGrid API and add them to the contacts list, and if they want to unsubscribe from the newsletter or transactional emails from my app's settings page I can save this info in my app's DB but also send a request to sendgrid's unsubscribe list to change the value there too. Now I can create a newsletter in sendgrid and send it out from there without having to do anything within my app. One caveat to this approach would be if the users clicks the unsubscribe button via the newsletter and the value gets changed in sendgrid but the change won't be reflected in my app - To work around this would it be better to create a cron job that periodically checks sendgrid for any changes and then save them to my DB, or should the unsubscribe page be part of my app, and when they select unsubscribe I save it to my DB and then push the changes to sendgrid? If i do this approach, would I require users to sign in if they want to make these changes?
An alternative approach would be to forego creating any contact lists in sendgrid and just create the email in sendgrid and sent it out using a rake tasks to trigger the sending?
Apologies if this is a very basic question, but this is my first time trying to setup newsletters etc and can't seem to find anything online about the best strategy to take in order to do this - I hope this question makes sense.
Twilio SendGrid developer evangelist here.
This question is a little too opinion based for Stack Overflow, many of the options you describe will work but they rely on whether it's the right decision for your application. But, I will try to give some guidance.
First, however you approach this, I would recommend you set up subuser accounts within SendGrid so that your transactional and newsletter emails come from different subusers. This way unsubscribes from newsletters won't affect transactional emails.
I would use the SendGrid contacts list to send out newsletters. This gives you a lot of power over your contacts without you having to build things yourself. You can segment your lists, create unsubscribe groups (where a user can unsubscribe from a subset of your emails instead of all of them) and send emails from within SendGrid without bothering your Rails app. You can still set up to trigger a newsletter from your app using the API if you want to.
As for maintaining the user's subscription status, I would go with exporting the contact lists and keeping your database up to date that way. The important thing when sending to your contact list is that SendGrid has the source of truth for subscription status and your application can be a bit behind if it needs to be. The SendGrid docs for exporting contacts also say:
Twilio SendGrid recommends exporting your contacts regularly as a backup to avoid issues or lost data.
So this would fulfil that suggestion too.
As for the unsubscribe links, the easiest way is to use the SendGrid unsubscribe form, have SendGrid handle all the unsubscribes, and your exports can keep your database up to date. That also allows you to handle the addition of unsubscribe groups without any more code on your side.
With more work you could create your own unsubscribe form so that your database stays more up to date with the subscription status. Your choice over whether a user should be logged in or not depends on how much friction you want to give the user before they unsubscribe and how much issue you think you might get from users forwarding your emails and having their friends unsubscribe them. That is up to you to decide on though.
Hope this helps a bit!

Rails - email as part of a conversation (mailboxer?)

I have a rails app that needs 'conversations' between two entities around a shared object (a proposal). Very simple, just two or more users chatting about the shared object. I have looked at a couple of gems, including Mailboxer, but was thinking of handrolling it instead.
However, the client wants the users to A) be sent email of the conversation (no problem) and B) be able to reply to those emails, where the reply gets added to the conversation. This would likely be similar to how eg airbnb handles it:
It's the B part that I'm struggling with. To my knowledge, Mailboxer wouldn't handle this. Are there other gems that do? Or do I need an entirely different approach?
You should use gem msgthr to handle conversational mail.
https://rubygems.org/gems/msgthr/versions/1.2.0

Ruby on Rails. Using Google Client API to parse emails

I am new to Ruby and have a question about how to do a specific task on Rails.
I have a list of inventory and each item has a specific Stock ID that is emailed to my personal Gmail account. I want my web application to listen for emails from a specific email account. When my gmail receives an email from that specific account I want my application to parse it for a couple of fields and insert the stock ID into my database.
For example:
Let's say my database has an item with style code: A5U31 and size:10.
The email will say something like item with style code: A5U31 and size:10 has Stock ID:329193020.
I want my Rails application to search the database for an entry with that specific style code and size, and when it finds an entry to simply insert the stock ID into the row.
I am trying to using the Google-API-Client gem to this, but I am struggling, because I am still a beginner. So far I have done this quick-start guide to authenticate my gmail account with my rails app.
https://developers.google.com/gmail/api/quickstart/ruby?authuser=2
If someone could help me figure out how to write this sort of code and where to put it in my app(models, controllers, views) that would be very appreciated. Thanks!
I know it's been several months since you posted this, so you probably already have it worked out, but in case you still need a solution (or if someone else wants to do something similar), I'll share my thoughts:
At a high level, it sounds like your plan is
Identify when a new email has come in (either by polling or by using a push notification).
Grab the new email's content.
Parse the email's content in order to extract relevant data.
Use the data to query and update a database.
Based on the documentation for the Gmail API, it does look like you should be able to set up push notifications, so you won't have to poll the endpoint to get the information you need.
However, my big takeaway from this list is that none of the items on it really require Rails, since you're not exposing an external web API for requests. I suppose that you could leverage ActiveRecord to create an item model and use that to manage the database; however, since it seems like you'd only need to make some basic SQL queries (and the same ones each time), I'm not sure that bringing in ActiveRecord adds much value.
If I were trying to solve this problem myself, I would probably create a simple Ruby program that (a) uses the gem you mentioned to handle push notifications from the Gmail API, and (b) uses another gem to connect to whatever kind of database you're using (e.g. pg for Postgres) and make the necessary queries.
(All of this assumes, of course, that you aren't specifically using Rails for some other reason, e.g. adding this feature to an existing Rails application).

Given a Facebook page URL, save as ID in Rails

tl;dr: In Rails, what is the recommended way of taking one form of input (in this case, a URL), and converting it to something else (in this case, a Facebook ID using their graph API) before saving it?
I'm working on creating a (very simple) site to track some Facebook and Twitter accounts. In both cases, I want a user to enter a URL into a form, but I'd like to then convert that URL into a (Facebook or Twitter) ID before saving to the database, for the sake of consistency and future-proofing.
My experience with Rails is very limited (just finished Michael Hartl's RailsTutorial), and I'm not sure how to set up my form to perform some action on the input before saving it. Any suggestions?
The common pattern for this, is doing it in the before_save callback (see http://api.rubyonrails.org/classes/ActiveRecord/Callbacks.html). However, as these operation(s) sometime take very noticeable time, it's better to do it in the background using DelayedJob, Resque, Sidekiq or at least girl_friday. The enqueuing of the job can still go into the before_save callback. And you probably want to check there if the id is already known, so it doesn't need to fetch it again.

Create a simple private message system in rails with inbox, send, and reply's?

There are some gems out there to instantly have a simple messaging system for users which I have looked at but they don't really fit the bill in terms of having a way to easy customize them.
Therefore I would like to ask some suggestions of gems that you consider be good for an instant messaging on a site, or discuss how one could implement this functionality.
I have built a simple system before that consisted of a messages table like this:
inbox
outbox
friend request
replies
id|message_id|sender_id|receiver_id|is_reply|is_friendreq|message
I'm thinking of storing everything in this one table and get all messages of a certain user where the user_id == receiver_id. This is very basic. I'm learning Rails and try to learn how to implement this on best Rails practice, so any tips/suggestions/ideas are more than welcome.

Resources