sendgrid-apex icon indicating copy to clipboard operation
sendgrid-apex copied to clipboard

SendGrid (http://sendgrid.com) Apex helper library.

Results 9 sendgrid-apex issues
Sort by recently updated
recently updated
newest added

We are using sendgrid API to send email and the only problem we have is attachment. We need to send PDF,DOC,JPEG from salesforce using sendgrid. BUt we are able to...

Is there anything more that needs to be done to install and run this? I have followed your instructions, but the sample code is not working. No errors or anything...

I am using sendgrid API to send an email with an attachment. I am able to send local server pdf as an attachment but, not able to send PDF which...

Hi, I have downloaded the github code from sendgrid to link SFDC with SG. The integration seems to work correctly except for the CC / BCC functionality. I am currently...

Before change all emails would send with last merge field value. Now each email gets the merge field value from the the corresponding index in the list from the second...

Hi, I've successfully sent an email from SendGrid with parameters passed from SF using the following core code: SendGrid sendgrid = new SendGrid('username', 'password'); SendGrid.email email = new SendGrid.Email(); email.addTo('[email protected]');...

Make "sub" a Map and update the addSubstitution method and setSubstitutions methods accordingly.

``` List vals = new List { 'val1', 'val2', 'val3' }; email.addSubstitution('sub', vals); ``` The above code will add the "sub" JSON but will only have "val3" in the substitution...