Questions tagged [cloudmailin]

CloudMailin is a service to enable your app to handle incoming mails sent to a particular email address.

CloudMailin allows to receive any volume of incoming email. You are given an email address that will forward any incoming message to your app, as an HTTP POST, within milliseconds. You can also seamlessly check the delivery status of each of your incoming emails via the dashboard, bounce emails that you do not wish to receive and use your own domain name.

More Info : http://www.cloudmailin.com/

19 questions
4
votes
3 answers

rspec/capybara: how to simulate incoming POST requests? (rack-test won't work)

I need to receive incoming emails as multipart-formdata via a POST request from Cloudmailin. The POST resembles the following: Parameters: {"to"=>"", "from"=>"whomever@example", "subject"=>"my awesome subject line.... Actually,…
GoodGets
  • 1,829
  • 3
  • 18
  • 21
1
vote
1 answer

Rails 3, :from, Net::SMTPSyntaxError (502 5.5.1 Unrecognized command

I'm running into this error "Net::SMTPSyntaxError (502 5.5.1 Unrecognized command" I have this code working: class Notifier < ActionMailer::Base default :from => "sammy@mysite.tv" def comment_updated(comment, user) @comment = comment @user =…
user169320
  • 1,694
  • 2
  • 12
  • 16
1
vote
1 answer

Google Cloud Async Processing return 200

I am using a google cloud function as a webhook to receive a payload from a 3rd party service. Typically when such services make requests to webhooks they expect a HTTP 200 as acknowledgement. However with a cloud function setup as below (and as…
Mike Miller
  • 3,071
  • 3
  • 25
  • 32
1
vote
1 answer

Make Files Uploaded by SMTP to S3 Public

I'm using cloudmailin.com to upload attachments from emails to an S3 bucket. The bucket itself has public settings, but I am unable to access the uploaded data from the data's link as S3 apparently doesn't make files uploaded by other users…
mjkaufer
  • 4,047
  • 5
  • 27
  • 55
1
vote
1 answer

Rails save attachment using CloudMailIn and Paperclip to S3

I a Rails app that handles Customer Tickets (worequests). The Tickets have Comments back and forth between the Customer and an Employee. The Comment can have an attachment. It's running on Heroku and PaperClip is storing the attachments in…
Reddirt
  • 5,913
  • 9
  • 48
  • 126
1
vote
1 answer

How to reject an email using mailgun?

Does anyone know how to reject an email received through mailgun (mailgun.com)? As a comparison, a similar service, cloudmailin allow you to return a status code of 404 or 403 to reject an email, and the sender of that email will receive a delivery…
lionel
  • 385
  • 5
  • 12
1
vote
2 answers

Stop parsing when hitting an empty line

I have a Rails app parsing incoming e-mails on Heroku using the Cloud-mailin add-on. The app recieves a list of prices in an e-mail and inserts them into the database. This works fine, but if the e-mail contains for instance a signature in the…
Twiddr
  • 297
  • 1
  • 4
  • 18
1
vote
1 answer

Heroku app authenticate requests from Cloudmailin

I use Cloudmailin in a Heroku app CloudMailin allows you to receive incoming email messages in your web app via an HTTP POST request In my case, Cloudmailin is configured on receiving emails to POST them to myapp.heroku.com/incoming_url. I note…
Colonel Panic
  • 132,665
  • 89
  • 401
  • 465
0
votes
1 answer

Invoke "normal" controller via another controller (CloudMailin)

I have developed a normal browser-based Rails game application. I'm now adding CloudMailin to the mix, effectively exposing an alternative interface via email. Consider, as a representative example, my existing create action: class GamesController <…
Chowlett
  • 45,935
  • 20
  • 116
  • 150
0
votes
0 answers

How to know which email the client replied to

I am using mailgun features to send email to clients using Adonis. I am sending two types of emails: Welcome Email - When the user signs up to my website. Orders Email - When the user orders an item. Now when someone replies to the mail(welcome or…
Angelin
  • 95
  • 1
  • 9
0
votes
1 answer

Receiving emails with sendgrid and cloudmailin

I have the same concept as mentioned in this question(generating a unique random email address for each user in rails app. When the user sends an email that that randomly generated email address, we process the body and store in db. I followed the…
Kranthi
  • 1,377
  • 1
  • 17
  • 34
0
votes
1 answer

Combining Google App Engine and CloudMailIn on Heroku in one setup

I'm developing a web app on Google App Engine, for which I recently decided that it requires a high performance inbound email processing functionality. GAE's functionalities for incoming email are rather limited, however CloudMailIn on Heroku seems…
Vincent
  • 1,137
  • 18
  • 40
0
votes
1 answer

Are there any Email Saas providers which allows creation of email ids using APIs?

For a project I need to setup either a mail server (like Open X-change, Kolab) or I can use email service as Saas from providers like Mailgun, Sendgrid etc. But my prime requirements are: Create new email addresses using (Rest) API or any other API…
VineetChirania
  • 831
  • 1
  • 10
  • 18
0
votes
1 answer

How should I pass info through email headers in Rails 3

I'm working on a support app which would allow customers to mail to support@myapp.com and reply to this same email address. I have set up ticket+[id]@myapp.com to be visible within the support team whenever there's a new ticket created. I am using…
0
votes
1 answer

Cloudmailin gets 500 from Heroku when delivering e-mails

I'm using the Cloudmailin addon to receive e-mail from my Heroku app. However, Cloudmailin has not been able to deliver - or, rather, it gets 500 from Heroku every time (so the address is correct). The error in Heroku logs is Started POST…
Simon Podhajsky
  • 307
  • 1
  • 3
  • 13
1
2