Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

With JSF-Primefaces how can I make a link on a dataTable column for emailId, such that onclick will open an email compose window? I'm using Primefaces.3.0.M3 with JSF2.

share|improve this question

1 Answer

up vote 4 down vote accepted

Use the HTML standard mailto: link syntax. You just need to make sure that the generated HTML link ends up to look like

<a href="mailto:john.doe@example.com?subject=Some%20subject&amp;body=Some%20body">mail</a>

This can in JSF be achieved by for example

<h:outputLink value="mailto:#{user.email}">
    <f:param name="subject" value="Some subject" />
    <f:param name="body" value="Some body" />
    <h:outputText value="mail" />
</h:outputLink>

Those links will open the client's default mail composition editor. The subject and body parameters are optional and allows you to set a default subject and body in the email editor.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.