The sendgrid tag has no wiki summary.
35
votes
5answers
7k views
sendgrid vs postmark [closed]
I am evaluating 3rd party services to handle our webapps email.
Requirements:
Tracking bounces
HTML email
Customer headers
Incoming email queue (Post email to some URL?)
Spam filtering of incoming ...
24
votes
6answers
9k views
Sendgrid vs Postmark vs Amazon SES and other email/SMTP API providers? [closed]
Could you please comment on the relative merits/drawbacks for Sendgrid, Postmark, Amazon SES, and other email providers? Which would you recommend, and why? Is there another email service that you ...
12
votes
7answers
3k views
Avoid being blocked by web mail companies for mass/bulk emailing?
Our company is sending out a lot of emails per day and planning to send even more in future. (thousands) Also there are mass mailouts as well in the ten thousands every now and then.
Anybody has ...
6
votes
3answers
354 views
Most reliable way to deliver emails from a users email address in rails?
I would like to allow users to send emails which are generated in my rails app from their email address .
I know I can just use my servers sendmail, and set the from address to their email address, ...
5
votes
3answers
167 views
Is there a tool to help me figure out why my emails are getting flagged as spam?
I have a PHP code base that sends permitted, opt-in email to users. I was using the PHP mail() function but that was getting me into issues with spam. So a few months back I switched to SendGrid and ...
5
votes
1answer
965 views
How to pass dynamic data to email template desgined on sendgrid webapp ? :-| Sendgrid
I integrated sendgrid email service with my sample application.
& also able to send email to user.
But how to pass dynamic data to Email template design on sendGrid webapp?
is there any way to ...
5
votes
2answers
3k views
Rails ActionMailer with SendGrid
I'm using SendGrid to send emails on Heroku...
The problem so far is while it works great on Heroku, on my local host it fails.
Right now I have SendGrig install here, config/setup_mail.rb:
...
4
votes
2answers
1k views
Rails 3 - sendgrid setup to support devise
I'm trying to get sendgrid running on my Rails 3 App with Devise, so devise can send out registration emails etc..
I added the following, config/setup_mail.rb:
ActionMailer::Base.smtp_settings = {
...
3
votes
0answers
315 views
Which email add-on (CloudMailin, MailGun or SendGrid) do you prefer on Heroku?
I am taking a look in the email add-ons on Heroku and wondering which one are you guys using successfully and why.
http://addons.heroku.com/mailgun
http://addons.heroku.com/sendgrid
It seems ...
3
votes
2answers
288 views
Sendgrid / email sending issues in Ruby on Rails (hosted on Heroku)
im having a problem getting sendgrid to send emails successfully on a rails 3.1 app that's using authlogic for authentication and is being deployed on heroku. i have the following action mailer ...
3
votes
2answers
172 views
PHP - huge array and looping statement
I have an old customer email list (about 1100 emails) and I would like to email them all.
This list is in a gigantic php array.
I am using sendgrid and they have a nice php howto located here: ...
3
votes
2answers
1k views
Sendgrid - SMTP or CURL?
We are setting up a bulk mailing system using sendgrid as our core.
We are managing the lists ourselves and sendgrid is simply our transport and are using code igniter to build the system.
We are ...
3
votes
2answers
942 views
Setting Up Devise & Sendgrid on Heroku
My site is hosted on Heroku and I installed the Sendgrid Add-On as it looked almost too good to be true - but so far none of the email functionality is working. I have read the documentation and it ...
3
votes
1answer
726 views
Rails 2.3.9 and SendGrid, Connection refused - connect(2) on localhost
I've looked through Google and StackOverflow and can't figure this out.
I've got a Rails 2.3.9 app using Ruby 1.8.7, trying to send email through SMTP like so:
ActionMailer::Base.delivery_method = ...
2
votes
1answer
45 views
Trouble using SendGrid with appharbor
I am using appharbor, added SendGrid as addon,
They provided me
smtp host - smtp.sendgrid.com
port - 587
user - 32adf793-2cbf-492c-9bb9-****@apphb.com
When I use these details and try to send email ...
2
votes
0answers
66 views
Using section header in Sendgrid
I am trying to send emails through sendgrid in Zend application. I copy the php code from the sendgrid documentation (smtapi class and swift).
I create a template with places that should be ...
2
votes
4answers
365 views
Best practices for sending email to lots of recipients (Rails + SendGrid)
I will be sending bulk emails from a Rails app and plan on using SendGrid. I am assuming that it is best to send a separate email to each recipient (as opposed to using BCC for all the recipients). If ...
2
votes
0answers
136 views
Can't include SendGrid in my Rails3 project
I'm very new to ruby and rails (3 days and counting), so my problem is probably something stupid. However, it seems to be something stupid that couldn't be resolved by searching for answers online. :(
...
2
votes
1answer
153 views
Is there a way to debug mailer with sendgrid on heroku? Or to check if the mail get actually sent?
I'm trying to implement a "contact us" form on my rails 3.0.10 project. Following the RailsGuides I created a mailer.
class QuestionMailer < ActionMailer::Base
default :to => ...
2
votes
1answer
246 views
Rails, SendGrid - Forwarding mailer-daemon emails to user
I have an application that allows users to send an invitation to a friend. Emails are being sent out using SendGrid. I am wondering if it's possible to forward the mailer-daemon emails back to the ...
2
votes
2answers
354 views
Anyone using Sendgrid's parse API with c#
I'm going to be building out a parsing controller in my MVC application and wondering if anyone has already done this.
http://sendgrid.com/documentation/ApiParse
1
vote
1answer
28 views
How do you parse a message from Sendgrid using their Parse API with Django?
SendGrid can parse the attachments and contents from incoming emails. Application examples include receiving uploads and posting blog articles via email.
The parse API will POST the parsed email to a ...
1
vote
1answer
39 views
How to make Sendgrid emails use a common layout
My rails app uses sendgrid to send emails. I wanted to know if there was anyway for all the emails to use a common layout. I tried setting the layout in the notifications controller but the layout was ...
1
vote
1answer
135 views
How to test email headers using RSpec
I'm using SendGrid's SMTP API in my Rails application to send out emails. However, I'm running into troubles testing the email header ("X-SMTPAPI") using RSpec.
Here's what the email looks like ...
1
vote
0answers
45 views
Looking for an alternative to Sendgrid for adding a custom footer
I'm currently using Sendgrid to add custom footers to the bottom of emails. http://docs.sendgrid.com/documentation/apps/footer/
So basically users send through my mail server on Sendgrid and can have ...
1
vote
2answers
80 views
How can i send a string array via HTTP POST using WebClient.UploadValues method?
I need to use HTTP Post to send a a string array like so...
Dim wc As New Net.WebClient
Dim NC As New Specialized.NameValueCollection
NC.Add("api_user", "some user")
...
1
vote
1answer
60 views
How can I integrate internal messaging with emails in asp.net?
in github when a user sends you a message two things happen. You get a "new Message" on your github dashboard and you receive an email.
if you reply to that email it triggers a new Github message ...
1
vote
0answers
82 views
Can't relay mail server to SendGrid
I've gone through the SendGrid integration instructions for Exim (http://docs.sendgrid.com/documentation/get-started/integrate/examples/exim/)
However, any email I send now is not being sent. Its all ...
1
vote
2answers
144 views
In Heroku Sendgrid, is there a way to see how many emails have my app sent today?
I have a Rails 3.0.5 app hosted in heroku. To send emails I use Sendgrid. Im in the free plan but it has a 200 email daily limit. I want to know if there is a way in Rails or in this addon "Sendgrid", ...
1
vote
0answers
49 views
How do you stop sendmail?
At least.. I think its sendmail.
Bascially I have a rails application running through SendGrid.
Long story short, a job was queued and errored, and delayed_jobs was running even though it wasn't ...
1
vote
2answers
414 views
Using SMTP through gmail to email via sendgrid using ruby on rails
Im doing a ruby on rails project for work and they would like to use sendgrid, but they also like gmail. With gmail it allows you to send an email from the web browser under a different alias but now ...
1
vote
1answer
985 views
Devise email confirmation not working on Heroku
When I click on the link in my confirmation email that devise sends, it seems to go to a path that is not recognized by my application.
The url looks something like this:
...
1
vote
1answer
132 views
Parsing an email content with german characters in rails
I am receiving incoming mails through sendgrid. When I receive an email with German language that contains umlaut characters in the params it is showing the full content, but when I read and save, it ...
1
vote
1answer
218 views
Cucumber to test Email Parsing?
this is my first stackoverflow question.
I am building an app that gets posted an email from SendGrid, which I then want to parse in a delayed job.
My concern is how do I QA this. I have been ...
1
vote
1answer
366 views
SendGrid API error codes and messages?
I have looked all over in their site and forums and wiki, but so far I have not been able to find an answer to this question.
Where can I find a list of SendGrid API error codes and messages?
Thanks
...
1
vote
1answer
1k views
SendGrid not sending emails on Heroku from default inqury/contact form
This is my first app using RefineryCMS. The way I have sent mail from applications in the past is not currently work with my refinery app.
I have tried numerous ways of doing this by way of numerous ...
1
vote
2answers
212 views
Accepting emails into a Heroku hosted application
ive got a email setup to forward to mx.sendgrid.new (the sendgrid mail server) then with received emails sendgrid passes them to a specified page (as shown in the 2nd image of the tutorial im ...
1
vote
1answer
589 views
Problem getting ar_mailer/ar_sendmail working on new server
Hey all. I've got a new app up and running on a new ubuntu server. It's working fine generally but i can't get ar_sendmail working. I'm following the instructions on this page:
...
1
vote
3answers
771 views
Sending emails from Django App
We are a growing Django app that is currently using Google Apps to send email. We are hitting the maximum limits of email sending and need a better solution. We prefer not to have to manage our own ...
0
votes
0answers
10 views
What is the best way to test sendgrid parse API on a dev machine?
I am developing a small web app that should receive emails from users, using sendgrid addon on Heroku. What is the best way to test this on a local dev machine? I was thinking about using localtunnel ...
0
votes
1answer
33 views
heroku play! with sendgrid configuration
Tried to config smtp in application.conf
mail.smtp.host=smtp.sendgrid.net
mail.smtp.user=${SENDGRID_USERNAME}
mail.smtp.pass=${SENDGRID_PASSWORD}
And in the controller
MultiPartEmail email = new ...
0
votes
1answer
46 views
Sendgrid on Heroku Error
I have setup Sendgrid for my Heroku Account, but the logs show the following issue when the app tries to send mail:
Net::SMTPFatalError (550 Cannot receive from specified address <[the
email ...
0
votes
0answers
16 views
Adding whitespace in .text emails using Rails and Sendgrid
so I'm using ActionMailer to send emails using the Sendgrid SMTPAPI.
Right now, I am only trying to send .text emails—and they are working great—except all the whitespace I add gets condensed into ...
0
votes
1answer
75 views
removing 'via sendgrid.me' from mail sent using on heroku
I'm using the free sendgrid plan to send email from my rails app hosted on heroku. I set it up using a combination of these instructions and this tutorial
It's all working, but on gmail the it the ...
0
votes
2answers
124 views
send mails via sendgrid
I'm trying to send mails via sendgrid, here my code :
// Setup Swift mailer parameters
$transport = Swift_SmtpTransport::newInstance('smtp.sendgrid.net', 25);
...
0
votes
2answers
113 views
Sending a mail with Sendgrid from a Grails 2.0 application on Heroku
I'm trying to send emails from my Grails 2.0 app via Sendgrid on Heroku but I can't find the right configuration. I keep getting "Connection refused" exceptions:
java.net.ConnectException: Connection ...
0
votes
1answer
54 views
Why can't i get sendgrid to replace my variables in my template when using their smtpapi?
I believe that i have followed the documentation on SendGrid's site but so far when I receive an email that I've sent through their API it never substitutes the replacements i've specified in the ...
0
votes
1answer
57 views
How to parse request data with ruby
I'm using sendgrid's event api which sends a codeblock like this to a postback url of my choice:
Array
(
[email] => fgdfg@gmail.com
[timestamp] => 1323698899
[smtp-id] => ...
0
votes
3answers
108 views
rails 3 heroku sendgrid contact us
Has anyone got a good tutorial or a gem to allow me to send emails via a contact form using sendgrid on heroku, i have the basic sendgrid set up and working as i am using exception notifications ...
0
votes
4answers
44 views
How do I touch a URL with rails?
I have a json URL supplied by sendgrid. All it needs to be is touched. How would I do this?
def suspend
@user = User.find(params[:id])
@user.update_attribute("suspended", true)
# the url I ...