nuxt-protected-mailto v0.1.1
Nuxt Protected Mailto
This module tries to protect email-addresses in your Nuxt SSG / SSR project from spam bots without sacrificing usability. The HTML output of the mail gets encoded to HTML Unicode Entities. Mailto: Links will be handled by javascript instead of a
href="mailto:test@example.com".
Quick Setup
Install the module to your Nuxt application with one command:
npx nuxi module add nuxt-protected-mailto
# or with npm and manually adding the module to your nuxt.config.ts
npm install nuxt-protected-mailtoUse the global Mailto Component:
With the Email as output.
<Mailto mail="test@example.com" subject="Optional Example Subject" body="Optional Placeholder Body" title="Write me a email" />With Caption
<Mailto mail="test@example.com" subject="Optional Example Subject" body="Optional Placeholder Body" title="Write me a email">
Button Caption
</Mailto>For multiple recipients
<Mailto mail="test@example.com, test2@example.com" subject="Optional Example Subject" body="Optional Placeholder Body" title="Write me a email" />
<!-- OR -->
<Mailto :mail="['test@example.com', 'test2@example.com']" subject="Optional Example Subject" body="Optional Placeholder Body" title="Write me a email" />That's it! ✨
What it does
It encodes the email address by hiding it behind a click event when the Mailto component is used. When the link is clicked, a mailto: url is generated, sending the user to their preferred email application with some prefilled data.
Props & slots
| Prop | Value | Required |
|---|---|---|
mail | String | String[] | Yes |
subject | String | No |
body | String | No |
cc | String | String[] | No |
bcc | String | String[] | No |
target | String | String[] | No |
| Slot | Description |
|---|---|
| Default | Valid HTML to display inside the element |
Contribution
Help wanted
This is the Nuxt3 update of my very first NUXT Module. Please reach out to me if there is something I could do better.