ContributionsMost RecentMost LikesSolutionsRe: How can I create a button that will trigger an e-mail of an entire form to a specific client?When you first make the notification, you have to choose the "Permission Type". Choose OpenRe: How to create tabs in a form for better navigationAnd here's a space efficient way without putting too much in global variables (leveraging formula variables) var text PartA = "<span style="& [BtnDivStyle] &">" & "<a href='" & URLRoot() & "db/" & [_DBID_OPPORTUNITIES] & "?a=dr" & "&rid=" & [Opp ID] & "&dfid="; var text PartB = "&z=" & Rurl() & "'style="& [BtnTextStyle] & ">"; var text PartC = "</a></span>"; "<span style="& [SpanEmpty] &">" & "<a>OPP: </a>" &"</span>" & $PartA & "11" & $PartB & "Main" & $PartC & $PartA & "22" & $PartB & "Scope" & $PartC & $PartA & "13" & $PartB & "Estimate" & $PartC & $PartA & "24" & $PartB & "Proposal" & $PartC & $PartA & "12" & $PartB & "Edit Proposal" & $PartCRe: How to create tabs in a form for better navigation@lin: BtnDivStyle ' padding:2px; margin:2px; border-style:solid; border-width:3px 3px 3px 3px; width:auto; height:auto; background:#2dab40; color:#2dab40; text-align:center; text-decoration:none; font-weight:700;' BtnTextStyle 'text-decoration: none;color: white; font-weight: bold;'Re: How to create tabs in a form for better navigation@lin: BtnDivStyle ' padding:2px; margin:2px; border-style:solid; border-width:3px 3px 3px 3px; width:auto; height:auto; background:#2dab40; color:#2dab40; text-align:center; text-decoration:none; font-weight:700;' BtnTextStyle 'text-decoration: none;color: white; font-weight: bold;'Re: How can I create a button that will trigger an e-mail of an entire form to a specific client?Also Pedro this is assuming that the Customer Email is already available as a field on Sales Order table.Re: Is it possible to log edits within a date field?Will check it out. The way Web Hooks / Email Notifications handles bulk edits isn't ideal, would be pretty impressed if the action handles it differently.Re: How to parameterize QB table-to-table ImportsYeah we use this to automate a ton of bulk ops - would be great if QB Imports allowed for direct parameters though!Re: How can I create a button that will trigger an e-mail of an entire form to a specific client?PDF format is tricky but as to the first part of your question - you can create a "Sent to Customer On" Date field and use a button with an API_EditRecord to populate it. You'd create an Email notification on that table which fires only when the "Sent to Customer On" field as been updated. Re: Webhook to add record to another appI wonder if a combination of webhooks and Table-To-Table imports may be easier (and catch past records that were missed) .Re: Is it possible to log edits within a date field?That's true. Does actions handle bulk ops better than webhooks (like save on a grid edit)