-
-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
- Loading branch information
There are no files selected for viewing
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,107 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>mailgo examples with Office365 setting enabled</title> | ||
</head> | ||
<body> | ||
<h1>mailto</h1> | ||
<p><a href="mailto:[email protected]">[email protected]</a></p> | ||
<p> | ||
<a href="mailto:[email protected]" | ||
><span>[email protected] (with subelement of a tag)</span></a | ||
> | ||
</p> | ||
<p> | ||
<a href="mailto:[email protected][email protected]" | ||
>mailto with more "to" and a "cc"</a | ||
> | ||
</p> | ||
<p> | ||
<a href="mailto:[email protected],[email protected]?cc=test" | ||
>mailto with more "to" and a "cc" not valid</a | ||
> | ||
</p> | ||
<p> | ||
<a href="mailto:[email protected]?subject=ciao" | ||
>example with a subject</a | ||
> | ||
</p> | ||
<p> | ||
<a href="mailto:[email protected]?subject=ciao&body=ciaociao" | ||
>example with a subject and a body</a | ||
> | ||
</p> | ||
<p> | ||
<a | ||
href="mailto:[email protected][email protected]&subject=ciao&body=ciaociao" | ||
>example with a cc, a subject and a body</a | ||
> | ||
</p> | ||
<p> | ||
<a | ||
href="mailto:[email protected][email protected]&[email protected]&subject=ciao&body=ciaociao" | ||
>example with a cc, a bcc, a subject and a body</a | ||
> | ||
</p> | ||
<p> | ||
<a | ||
href="" | ||
class="mailgo" | ||
data-address="matteo" | ||
data-domain="manzinello.dev" | ||
>less-spam example (with class=mailgo)</a | ||
> | ||
</p> | ||
<p> | ||
<a href="#mailgo" data-address="matteo" data-domain="manzinello.dev" | ||
>less-spam example (with href=#mailgo)</a | ||
> | ||
</p> | ||
<h2>Dark mode</h2> | ||
<p> | ||
<a class="dark" href="mailto:[email protected]" | ||
>[email protected] (single dark mode, class=dark)</a | ||
> | ||
</p> | ||
<p> | ||
<a | ||
class="dark" | ||
href="mailto:[email protected][email protected]" | ||
>mailto with a cc and single dark mode | ||
</a> | ||
</p> | ||
<p> | ||
<a | ||
class="dark" | ||
href="mailto:[email protected][email protected]&[email protected]&subject=ciao&body=ciaociao" | ||
>example with a cc, a bcc, a subject and a body and single dark mode</a | ||
> | ||
</p> | ||
<p> | ||
<a | ||
href="" | ||
class="mailgo dark" | ||
data-address="matteo" | ||
data-domain="manzinello.dev" | ||
>less-spam dark mode example (with class=mailgo)</a | ||
> | ||
</p> | ||
|
||
<br /> | ||
<br /> | ||
<p><a href="https://mailgo.dev">mailgo.dev</a></p> | ||
|
||
<script> | ||
window.mailgoConfig = { | ||
details: { | ||
subject: false, | ||
body: false, | ||
}, | ||
}; | ||
</script> | ||
|
||
<script src="../dist/mailgo.min.js"></script> | ||
</body> | ||
</html> |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Large diffs are not rendered by default.