Email hyperlink(mailto:) in list

Confluence User - 29 Dec, 2015

I have a list with users and i want to hyperlink the email column to send an email, like <a href="mailto:someone@example.com >.

When I use hyperlink action i get an '?' between mailto: and the variable so it's not working.

 

 

Thanks

 

datalists;email

1


05 Jan, 2016
confluenceUser
confluenceUser

Hi,

Not sure if you can configure the hyperlink action directly, but if you can't, then you can also use some JavaScript or JQuery in a Custom HTML to decorate the columns e.g.

<script>
$(function() {
$("td.column_email").html("<a href='mailto:" + $(".column_email").text() + "'>" + $(".column_email").text() + "</a>");
});
</script>
RELATED QUESTIONS

Your answer


To answer a question you'll need an account.

Print