Page 1 of 1

Create hyperlinks in SendGrid email text?

Posted: Sun Nov 08, 2015 12:56 am
by Dan Hoeck

When using SendGrid services to send an email, is it possible to send anything other than plain text?

I would like to send the words "Sign up" with a link attached to the words, is that possible?

Also is it possible to change the color/font/size of text?

The javascript I'm placing in the "text" parameter in the service is as follows:

var body1 = "Hi,";
var body2 = value;
var body3 = " reached out to you.";
var body4 = "Sign in";

return (body1 + "\n" + body2 + "\n" + body3 + "\n" + body4);

Thanks again for your help!


Create hyperlinks in SendGrid email text?

Posted: Mon Nov 09, 2015 9:13 am
by Serhii Kulibaba

Hello Dan,

Please use request parameter html instead of text: https://sendgrid.com/docs/API_Referen...
You can use any HTML content in that parameter.


Create hyperlinks in SendGrid email text?

Posted: Tue Nov 10, 2015 10:00 pm
by Dan Hoeck

Thank you Sergiy, that's perfect!