Re: Remove "Send Email" option with NAML
Posted by
mark on
Jan 04, 2020; 1:19pm
URL: https://support.nabble.com/Remove-Send-Email-option-with-NAML-tp7591364p7604785.html
Here's one way to make it so only admins can send emails (although with the option above, you can still see their email address on their profile—just without being able to use the form to email them):
Here's the new code for the macro called send_email_to_user_link: <override_macro name="send_email_to_user_link" requires="user">
<n.set_local_user.this_user />
<!-- If this is not the profile of the visitor AND the user is authenticated -->
<n.if.both condition1="[n.not.visitor.equals.local_user/]" condition2="[n.local_user.is_authenticated/]">
<then>
<n.if.visitor.is_site_admin>
<then>
<div style="margin-top:.5em">
<img src="/images/mail.png" align="absmiddle" width="18" height="13"/>
<a href="[n.local_user.send_email_path/]"><t>Send Email to <t.author.local_user.name/></t></a> (This will reveal your email address.)
</div>
</then>
</n.if.visitor.is_site_admin>
</then>
</n.if.both>
</override_macro>
Here's the old code: <macro name="send_email_to_user_link" requires="user">
<n.set_local_user.this_user />
<!-- If this is not the profile of the visitor AND the user is authenticated -->
<n.if.both condition1="[n.not.visitor.equals.local_user/]" condition2="[n.local_user.is_authenticated/]">
<then>
<div style="margin-top:.5em">
<img src="/images/mail.png" align="absmiddle" width="18" height="13"/>
<a href="[n.local_user.send_email_path/]"><t>Send Email to <t.author.local_user.name/></t></a>
</div>
</then>
</n.if.both>
</macro>