Discussions
Show sales rep name instead of internal id in email.send body
Hi again
I am putting together an email alert. One of the fields in the email is the Sales Rep.
I am extracting from the record being created using the 'salesrep' field.
When I pass this to the email it is showing the internal id of the rep not the name.
What is the method by which this number can be displayed as a name rather than number?
variable repName is the sales rep.
Thank you in advance.
var repName = currentRecord.getValue ({
fieldId:'salesrep'
});
body: "Details Below: <br>" +documentNum + "<br>" +repName
In the email it shows the id number:
How do I get it to show the name which is in the field?