You need to sign in to do that
Don't have an account?

Help with sendgrid integration
Can someone help me in integrating sendgrid into my own org? I need to send bulk email(for campaigns) to a specified list of recepients.
I took some help from here. https://github.com/sendgrid/sendgrid-apex
But when I tried implementing it in my or, I always had a compiling error
Error Error: Compile Error: Illegal assignment from SendGrid.SendGridResponse to String
Please suggest. Thanks for your time.
I took some help from here. https://github.com/sendgrid/sendgrid-apex
But when I tried implementing it in my or, I always had a compiling error
Error Error: Compile Error: Illegal assignment from SendGrid.SendGridResponse to String
Please suggest. Thanks for your time.
Suprajata - This is because you're trying to get the response of send method in a string. You need to get response in proper object of sendgrid response class provided in the package.
SendGrid.SendGridResponse response = sendgrid.send(emails);
Let me know if it solves the issue.