2019-05-13 11:46:48 +02:00
2019-05-11 00:49:43 +02:00
2019-05-12 13:28:51 +02:00
2019-05-12 13:28:51 +02:00
2019-05-05 22:18:53 +02:00
2019-05-13 11:46:48 +02:00
2019-05-11 18:18:09 +02:00
2019-05-13 09:26:58 +02:00

💌 mailgo - a different mailto (WIP)

mailgo screencast (see it in action! https://mailgo.js.org)

See the docs on npm for a more stable version of mailgo, the README of GitHub is referencing to the latest WIP mailgo: 0.3.0.

what?

mailgo will substitute all the mailto: links with the mailgo modal

mailgo.min.js size

mailgo modal

installation

add at the end of the <body>

<body>
...
<script src="https://unpkg.com/mailgo@0.3.0/dist/mailgo.min.js"></script>
</body>

you can also import mailgo in <head> using defer

<head>
...
<script src="https://unpkg.com/mailgo@0.3.0/dist/mailgo.min.js" defer></script>
</head>

(note: the GitHub /dist is totally unstable, use unpkg or npm to test mailgo, thanks!)


usage

default

by default all the mailto: links will be enabled with mailgo only importing the script!

(and with the default usage in the modal will appear also cc, bcc, subject and body parameter if provided)

Do you want to prevent the spam? Use a no-spam usage instead the default usage

<a href="#mailgo" data-address="matteo" data-domain="manzinello.dev">write me!</a>

  • add href="#mailgo" to <a>
  • add data-address and data-domain to re-create your email address

no-spam usage #2

<a class="mailgo" data-address="matteo" data-domain="manzinello.dev">write me!</a>

  • add class="mailgo" to <a>
  • add data-address and data-domain to re-create your email address

no-spam usage #3

<a mailgo data-address="matteo" data-domain="manzinello.dev">write me!</a>

  • add the attribute mailgo to <a>
  • add data-address and data-domain to re-create your email address

exclude a mailto

to exclude a mailto link add to the <a> element the class no-mailgo like in this example:

<a class="no-mailgo" href="mailto:matteo@manzinello.dev">matteo@manzinello.dev</a>

this solution can be applied only to the default installation (<a> element with href starting with mailto:, the classic mailto link)


browsers support

// WIP


NPM

https://mailgo.js.org

Description
No description provided
Readme 17 MiB
2020-10-30 22:16:14 +00:00
Languages
JavaScript 79.5%
CSS 14.1%
HTML 6.4%