- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-15-2017 07:08 AM
I'm trying to pull in the display value of my reference variable 'vend_name', but will not work. The 'Requested For First Name' is pulling in as expected:
Hello ${request.requested_for.first_name},
Your request for a New Mexico Non-Taxable Transaction Certificate (NTTC) for ${current.variables.vend_name.getDisplayValue()} has been completed. Please find attached the certificate for your use.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-16-2017 10:28 AM
Nicole, you don't need to use a mail script and that is causing the extra line. Use the following instead:
Hello ${request.requested_for.first_name},
Your request for a New Mexico Non-Taxable Transaction Certificate (NTTC) for ${request_item.variables.vend_name} has been completed. Please find attached the certificate for your use.
Thank you,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-16-2017 09:41 AM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-16-2017 09:43 AM
Hi Nicole,
does it come through on email the same way as the preview? if so you may need to convert it to HTML to have more control
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-16-2017 10:13 AM
Yes, it appears like this in the email:
Hello Nicole,
Your request for a New Mexico Non-Taxable Transaction Certificate (NTTC) for
NORTH CAROLINA
has been completed. Please find attached the certificate for your use.
Thank you,
How do I convert?

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-16-2017 10:22 AM
Hi Nicole,
Looks like you already have it set to HTML, here is a great tool i sure to help me create my Notifications: https://html-online.com/editor/
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-16-2017 10:28 AM
Nicole, you don't need to use a mail script and that is causing the extra line. Use the following instead:
Hello ${request.requested_for.first_name},
Your request for a New Mexico Non-Taxable Transaction Certificate (NTTC) for ${request_item.variables.vend_name} has been completed. Please find attached the certificate for your use.
Thank you,