Skip to main content

I would like to create a send email button on each table row using a default template. How do I go about coding the button?

Thank you.

Create a row action on the table that performs a url redirect to the salesforce email utility. 

You can add parameters to the redirect URL that pull in the correct template.   Check out hints on this URL hacking here.

https://salesforcewizard.wordpress.com/2014/01/30/url-hack-revisted-auto-select-email-template-with-…

Just remembrer that as you look at this article,  that in skuid you will use a slightly different data merge syntax.  Instead of {!FieldName},  you will use {{FieldName}}.  Also remember that this field needs to be in the model that is driving your talble. 




 


Thank you!