Hi there.
I would like to send email notification and in platform notifications to users as a part of an action or a function backed action. I’ve tried a couple of ways but it seems like I can’t get rid of the Palantir logo in the email body. Is there any way of changing the logotype or delete it out of the email?
At the moment, it’s not possible to customize the layout of those emails. An alternative is to integrate another email service provider and trigger it via webhook at the end of the action type.
I have a object called Questions where users can submit question. One of the properties of the Question-object the RID of the user who is asking the question.
Is it possible to via a typescript function fetch the users email-address from the property of the current viewed object and store it in a variable called lets say "current-users-email? If so, then I could concat variable “mailto:” + /“current-users-email” + subject, body and so on?
As a workaround I created a function that takes the RID of the specified user and return the email-address. I created a variable that fetch the RID of the “asking user” in the active question object. Then I created a variable that concatenates the email address in a mailto: string with subject and body. Then I created a button with an variable URL. It works for the use case but it would have been smooth to be able to change the logotype and use the built in action to create the email answer as a rule for modifying the answer-object.