Skip to main content
Nintex Community Menu Bar
Question

How to add Send Email" Row Action to a Skuid Table?"

  • July 9, 2024
  • 2 replies
  • 9 views

Forum|alt.badge.img+10

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.

This topic has been closed for replies.

2 replies

Forum|alt.badge.img+17
  • Nintex Employee
  • 3766 replies
  • July 9, 2024

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. 




 


Forum|alt.badge.img+10
  • Author
  • 326 replies
  • July 9, 2024

Thank you!