Cloud-based email infrastructure and delivery engine, with integration via SMTP and HTTP API. Also offers analytics and newsletter functionality.
1
vote
2answers
20 views
First time mass-emailing using Sendgrid with rails
I am running a rails app on heroku and would like to send an email to 160 users. This is the first time I am doing this so I would to very whether the method below will lead to a successful outcome.
...
1
vote
2answers
37 views
How to convert EmailMessage alternate views into SendGrid Html and Text
I have an interface for sending mails
public interface IMailSender
{
void SendMail(MailMessage message);
}
When I create a mail I use AlternateView for that (plain text and html)
And now I ...
2
votes
1answer
33 views
SendGrid unique arguments with individual emails
I trying to set up a list of unique arguments per each email, the official reference of the SMTP api describes this feature quite briefly, here.
And the API docs of the SendGrid PHP library the I am ...
3
votes
2answers
25 views
Why does file_get_contents() Javascript Output not Execute?
Backstory: I'm trying to use the Newsletter Widget from SendGrid but they currently don't offer it using SSL. So any requests to https:// just redirect to http:// and then browsers complain about ...
1
vote
0answers
43 views
Custom multipartFormData parser in play2 scala to handle multiple encodings on dataparts
I'm trying to implement a custom multipartFormData data parser to handle a callback from Sendgrid API. The callback is a multipart request where the dataparts could be encoded in different encodings: ...
2
votes
1answer
26 views
How can I place my email processes/routine outside of my frontend server (Rails 3.2/devise/sendgrid/heroku)
I am beginner in all Rails/dev/server management.
In order to free up my frontend server, I'd like to place all the requests sent to sendgrid (
authentificaiton, confirmation, passwiord reset and ...
0
votes
0answers
19 views
Sendgrid package installation fails
I am using VS 2010. Want to install Sendgrid Nuget package.
So on package manage console I give following command.
PM> Install-Package Sendgrid
which gives error as follows:
Id is required.
...
0
votes
2answers
48 views
Heroku won't accept push due to submodule
I've created a PHP app on heroku, and I installed the sendgrid-php submodule. However, when I try to push it, this occurs:
$ git push heroku
Counting objects: 5, done.
Delta compression using up to ...
2
votes
2answers
77 views
Converting ISO-8859-1 to UTF-8 for MultipartFormData in Play2 + Scala when parsing email from Sendgrid
I have hooked up my Play2+Scala application to Sendgrid Parse Api and I'm really struggling in decoding and encoding the content of the email.
Since the emails could be in different encodings ...
1
vote
1answer
18 views
Email API service with Sendgrid like API endpoints and Mailchimp like dashboard
We are looking for an email API service that allows us to send emails to specific users (not just list by list but user-by-user). Usually that would be considered transactional email and you would use ...
1
vote
0answers
29 views
Use Sendgrid or mailchimp to send survey to 150 potential users for startup [closed]
I have collected 150 emails of users who are interested in signing up for my service when it goes live.
I would like to engage them with a welcome email and ask them some questions in the form of a ...
2
votes
1answer
43 views
sendgrid in classic asp add email category
I'm sending mail using sendgrid web API successfully but unable add categories into x-smtpapi.
Here is my code :
function getHTML (strUrl,postData)
Set xmlHttp = ...
1
vote
1answer
35 views
Rake task sending email newsletters failing when using Heorku Scheduler addon
I have a rake task set up to fire once per day on a Rails app. It checks which users need a newsletter sent, then prepares the newsletter and sends it using SendGrid starter-level addon via DelayedJob ...
1
vote
0answers
31 views
How do Sendgird's tracking mechnisms work?
Does anyone know how Sendgrid tracks email deliveries, junk folder designation, and email opens? The click tracking is pretty obvious, but the others leave me a bit perplexed. I'm assuming that if ...
2
votes
1answer
42 views
How to configure Devise email with Heroku and Sendgrid in Rails?
I've got a simple Rails 3.2.7 app with Devise added that is deployed to Heroku with Sendgrid added. It works fine on heroku for everything except when it needs to do a password retrieve which requires ...
1
vote
1answer
67 views
Questions about correct design, and the best way of injection parameters into prepared text [closed]
I am currently working on an OOP driven mailing system, using a cronjob and SendGrid SMTP API.
I have implemented a class that fetches the list of the relevant tasks for the current instance, ...
1
vote
1answer
29 views
How to add a reply-to and a from-name header with SendGrid php library
This might be a silly question, but I've looked here, here and here,
and there is no mentioning whatsoever about those simple functionality.
Can I user the addHeader method for this cause?.
Thanks ...
1
vote
1answer
28 views
sendgrid make test throws errors
I'm running node on my vps server. node is at my root, my app.js with node_modules (express, socket.io) are in /home/vps/public_html/
when following github readme for setting up sendgrid i run into ...
1
vote
1answer
73 views
Handling batched sendgrid events using the asp.net web api
I'm attempting to use an asp.net web api application to handle batched SendGrid events and I've run into a stumbling block due to the way SendGrid handles the content type header of the post it sends.
...
1
vote
1answer
25 views
SendGrid and Rails Error
I am trying to set up SendGrid on my Rails app, I've been following this: http://sendgrid.com/docs/Integrate/Frameworks/rubyonrails.html
So far I've setup my config/environment.rb
...
1
vote
1answer
67 views
To give unsubscribe link in the mail using sendgrid XSMTPAPI header
Can any one please tell me how to add unsubscribe link in the mail which is send by modifying the header.I am using Sendgrid header XSMTPAPI, although I found a relevant header called subscription ...
2
votes
1answer
54 views
How to add substitution tags to the subject of the email in SendGrid using the xsmtp-api with the php library
I am trying to set up the name of my client in the subject of the email.
This is very crucial for my application, and from what I've read in the SendGrid API docs
it is quite possible!.
Info - ...
1
vote
2answers
92 views
Newlines resolved as =0A in Sendgrid X-SMTPAPI header
I am using Sendgrid to send email to a mailing list, using the X-SMTPAPI header to specify the multiple recipients. From the Sendgrid documentation "Headers must be wrapped to keep the line length ...
1
vote
1answer
27 views
Substitute reply-to, sendgrid smtp api
Is it possible to substitute reply-to option in Sendgrid SMTP Api? If yes, how can I achieve it?
1
vote
1answer
38 views
Line-wrapping at the SMTP
I am sending html email and the SMTP server handling emails messages with hard-wrapping at proper length.
I am using sendgrid and rails 3.2.11, need to do soft-wrapping in all lines of message below ...
1
vote
1answer
94 views
How to implement a mail queue that can be easily integrated with SendGrid
The goal:
Implementing a modular, re-usable, object-oriented class, or package, that will be in charge of automating the process of user notifications.
Those notifications are send according to a ...
2
votes
3answers
131 views
Setting up SendGrid with Windows Store Apps
I have a Windows Azure account and am using Azure Mobile Services with my Windows 8 Store App, and have followed the instructions in this tutorial, but there is a problem somewhere and there isn't any ...
4
votes
1answer
55 views
Sendgrid Web API — set multiple users in reply_to field
I'm using the Sendgrid Python library, and I'd like to send emails with multiple people in the 'reply_to' field.
I'd like to send an email to 2 people such that both users can email one another by ...
1
vote
2answers
52 views
Sendgrid email sending having issue with apostrophe ’ character?
trying to send email using sendgrid with java. the apostrophe character appears like a ? Question mark.
I am sending the header to have text encoding as UTF-8 but it still apears liek a question ...
1
vote
2answers
50 views
Elegant/efficient means of sending email with Codeigniter and Sendgrid
I'm setting up some transactional email fun in our Codeigniter app via integrating with Sendgrid.
I've got things setup and ready to move forward with creating all of the specific ...
1
vote
1answer
97 views
Send separate email to each recipient within a mailing list using SendGrid in PHP
I'm sending an email in order to notify my users about certain changes in the system.
In order to improve deliverability I would like to send each email individually rather then as one email with a ...
1
vote
0answers
104 views
How to send embedded images with sendgrid emails?
I'm starting with SendGrid to send my e-mails, but I coudn't find how to embed images. Without using SendGrid I was using the following code to send e-mails with embedded images:
var mail = new ...
0
votes
3answers
113 views
Setting up a new webserver: Is there a better way to setup an email system?
For the new webserver, I am thinking of setting up the email system as follows:
gmail business for site-specific emails, like customer support, etc (bidirectional)
amazon-ses for transactional and ...
2
votes
1answer
244 views
PermError SPF Permanent Error: Too many DNS lookup
I have SPF and TXT record configured. When i check the SPF record syntax. It says PermError SPF Permanent Error: Too many DNS lookup.
v=spf1 include:_spf.google.com include:netcore.co.in ~all
And ...
0
votes
0answers
237 views
Anti-Spam: SPF & Sender-ID check [closed]
I'm having trouble sending emails to Hotmail: they always land into the Spam Folder.
I ran a check (details below) but I don't understand what's going wrong with SPF and Sender-ID checks. I'm using ...
2
votes
2answers
129 views
how to get response of email sent using sendgrid in rails app to save in database
I have sent email through rails app using sendgrid and actionmailer, I also received the mail.
But I want status of the email sent (open,deliver,bounce..) of sendgrid in my rails app so that that ...
4
votes
1answer
370 views
npm error when deploying to heroku with sendgrid module
I just installed the Sendgrid npm module along with the corresponding Heroku add-on (https://devcenter.heroku.com/articles/sendgrid), but now I can't deploy. Not sure what the dependency error is, but ...
1
vote
2answers
150 views
Sending repetitive email without an alias sender
I need to send about 1,000 emails. The emails are semi-personalized, though generic enough that they can inherit a default template.
This is easy enough to do in SendGrid, by iterating over a for ...
1
vote
2answers
172 views
Using SendGrid SMTP Integration for bulk email
Is there a way to use SendGrid's SMTP Integration API for sending bulk mail?
Here's what I have in mind:
I need to send a large bulk of emails to subscribers. Since SendGrid docs recommend using SMTP ...
1
vote
1answer
71 views
AppHarbor, Elmah, and SendGrid
Is there any magic that AppHarbor does with Elmah and SendGrid?
I see from this question Trouble using SendGrid with appharbor that AppHarbor does some configuration so an SMTP client can be ...
1
vote
3answers
100 views
Send Newsletter weekly using Sendgrid Web API
I am developing a project using PHP in which I am using sendgrid web API. In which, I want to send Newsletter on every week or month on a specified date by user.
I don't know how can I manage this on ...
2
votes
1answer
109 views
Node.js and Sendgrid mailer error on res.end
I'm a bit new to node. I'm using express and the sendgrid api to send an email (collected REST-fully). After sendgrid succeeds or fails, I want to respond with a json object. Here's the sample case:
...
1
vote
2answers
52 views
How to Include a Text Version of Email in JAVA
I am sending emails through java web application, Emails contains only html content. Emails sent to recipients are landing in SPAM folder for particularly one domain (ex: mydomain.com).
So, When i ...
1
vote
1answer
93 views
SendGrid Parse API and SaaS app
I would like to add the ability for users to send an email to an address that automatically saves the attachments as documents and saves the email as html, etc.
I think I understand how I can write ...
2
votes
1answer
185 views
SMTP authentication failure while using SendGrid/Gmail
I am getting SMTP Authentication Failure on the server and the mail is getting send via the server SMTP only...
It appears to be a server configuration or related problem, but I am not sure.
This ...
1
vote
2answers
115 views
Sending mail through SendGrid on Java Play application fails
I'm trying to send a simple test email through SendGrid from my Java Play 2.10 application. I'm using the play-plugins-mailer to send the email and have a free (heroku) SendGrid account. This is ...
1
vote
1answer
133 views
Sendgrid/PHP/Heroku Not Working
I added the basic version of SendGrid to Heroku so we could send user-feedback emails from our website. The basic testing implementation I'm using is below:
<?php
/**** Takes posted content from ...
1
vote
2answers
118 views
Extract email message itself from all its prior messages and meta data (Sendgrid Parse API/PHP)?
I'm using Sendgrid and their Parse API to send/receive email. The Parse API allows one's web app to receive email as a $_POST but the problem is that in the $_POST I want to be able to extract the ...
0
votes
1answer
185 views
file uploading rest api…?
I am using this for sending mail with attachment using sendgrid api in salesforce...i am getting error response as bad request and status code:400
anybody help me to figure it out..???
String ...
0
votes
2answers
139 views
sendgrid php example - how to add sender's name?
In the sendgrid php example here http://sendgrid.com/docs/Code_Examples/php.html you have the ability to add sender's email but not the sender's name. So say for example if the name of the sender is ...

