Customize email body with automation

Hello,

Is it possible to customize the email body while using AppSheet automation ?

I want to insert the USERNAME() and other data from the sheets.

Please see picture below :

Capture.JPG

Solved Solved
0 2 138
1 ACCEPTED SOLUTION

Yes, it's possible. References to app data need to be expressed from the context of the table the automation task is associated to per the task's Table name property. Within the angle brackets in the template to indicate a variable, you would also need to enclose the reference to a column value within brackets just like any other expression within AppSheet. Within a variable, you can also use AppSheet functions, such as USERNAME(); however, with regard to that particular function, note that it doesn't actually work for many authentication providers.

So, if you have a [User Name]column in the table that the automation task is associated to, you could use something like the following:

<<[User Name]>> 

 

View solution in original post

2 REPLIES 2

Yes, it's possible. References to app data need to be expressed from the context of the table the automation task is associated to per the task's Table name property. Within the angle brackets in the template to indicate a variable, you would also need to enclose the reference to a column value within brackets just like any other expression within AppSheet. Within a variable, you can also use AppSheet functions, such as USERNAME(); however, with regard to that particular function, note that it doesn't actually work for many authentication providers.

So, if you have a [User Name]column in the table that the automation task is associated to, you could use something like the following:

<<[User Name]>> 

 

Issue solved ! Thank you.๐Ÿ˜Š

Top Labels in this Space