# Mailto

Generate a `mailto` link element with the value as the email address. If it's _not_ an email address, it's going to be one busted link.

```yaml
holler: holler@example.com
```

::tabs

::tab antlers
```antlers
{{ holler | mailto }}
```
::tab blade
```blade
{{ Statamic::modify($holler)->mailto() }}
```
::

```html
<a href="mailto:holler@example.com">holler@example.com</a>
```
