Skip to main content
Solved

Having issues with mailto link in Notification

  • June 15, 2026
  • 4 replies
  • 20 views

I am trying to send a notify message with a mailto link as part of the template but the link isn’t rendering properly. Trying to understand why. Other links in the message are rendering properly. 

I thought it may be the ** in the hyperlink text but its the same result without it. I saw another post mention mailto so I thought this should work but their approach was with the message coming from a variable in HTML and being manipulated back to the normal text whereas I want the template to include it each time as normal. Agent Architect also says that the normal markup hyperlink format should work.  

 

This is the output. 

 

Best answer by Kevin Mok

@Joel.Matias I am not a big fan of using HTML in render, but could you try something like 

If you need support please emal <a href="mailto:someone@example.com">Support Identity Management</a>

4 replies

Kevin Mok
Forum|alt.badge.img+2
  • Community Manager
  • June 15, 2026

Hey ​@Joel.Matias -

Template doesn’t have access to data so you will need to create an arg in RENDER such as

RENDER():
args:
user_fullname: data.user_details.user.full_name
template: |-
Hey, {{user_fullname}}
...

 

For the mailto link can you remove the ** at the beginning that may be messing it up


  • Author
  • New Participant
  • June 15, 2026

Hey ​@Joel.Matias -

Template doesn’t have access to data so you will need to create an arg in RENDER such as

RENDER():
args:
user_fullname: data.user_details.user.full_name
template: |-
Hey, {{user_fullname}}
...

 

For the mailto link can you remove the ** at the beginning that may be messing it up

Thanks Kevin.

My specific issue is getting the mailto link to work. I’ve tried many variations of the mailto link with and without the ** and nothing is working to render that link. I dont have any issues getting the rest of the message showing as needed. 


Kevin Mok
Forum|alt.badge.img+2
  • Community Manager
  • Answer
  • June 15, 2026

@Joel.Matias I am not a big fan of using HTML in render, but could you try something like 

If you need support please emal <a href="mailto:someone@example.com">Support Identity Management</a>


  • Author
  • New Participant
  • June 15, 2026

@Joel.Matias I am not a big fan of using HTML in render, but could you try something like 

If you need support please emal <a href="mailto:someone@example.com">Support Identity Management</a>

That worked. Not sure why the normal markdown linking doesn’t pick it up. Thank you.