Search code examples
c#.netemailmailto

Hide email address in mailto settings


I am creating some buttons that will allow my users to submit a bug report or a feature request. They do this by sending their information directly to a folder in my inbox.

Is there a way to hide my email address or 'mask it' so that they are not able to see exactly who it is going to?

Here is an example of my code:

  <ul id="menu">
        <li><a href="#">Contact</a>
            <ul>
                <li><a href="#" target="_top">Tool Bug Report</a></li>
                <li><a href="#">Feature Request</a></li>
            </ul>
        </li>

Solution

  • Its not possible in mailto link. For that you will have to use forms only