Directories
{% if not current_user.is_premium() %}
This feature is only available in premium plan.
{% endif %}
Directory allows you to create aliases
on the fly. Simply use
your_directory/anything@{{ EMAIL_DOMAIN }} or
your_directory+anything@{{ EMAIL_DOMAIN }} or
your_directory#anything@{{ EMAIL_DOMAIN }}
next time you need an email address.
anything could really be anything, it's up to you to invent the most creative alias đ.
your_directory is the name of one of your directories.
You can use the directory feature on the following domains:
{% for alias_domain in ALIAS_DOMAINS %}
{{ alias_domain }}
{% endfor %}
âšī¸
The alias will be created the first time it receives an email.
{% for dir in dirs %}
{{ dir.name }}
Created {{ dir.created_at | dt }}
{{ dir.nb_alias() }} aliases.
{% endfor %}
{% if dirs|length > 0 %}
{% endif %}