How to Create an Email Link in Divi

Ever wondered how to create those clickable email links? When you click on them your default email address will open up.

It is very easy to make these links on your Divi website. I’ll show you how you can make them from the text module, button module and I’ll provide you the HTML code.

Create a mailto link in the text module

Go to your text menu editor and highlight the text that you want to make a clickable mailto link. Click on the insert link icon and place the following as your link:

mailto:info@yourwebsite.com

Replace yourwebsite.com with your own mail address.

Insert a mailto link

Create a mailto link in the button module

This is also very easy to do. You can place the same code as before in the Button Link URL

mailto:info@yourwebsite.com

Replace yourwebsite.com with your own mail address.

Button mailto link

Mailto link in HTML

This is the code for a mailto link in html.

<a href="mailto:info@yourwebsite.com">info@yourwebsite.com</a>