Adding dotted borders to your emails involves some basic HTML and CSS knowledge. Here's a simple example:
<div style="border: 1px dotted #000;"> Your Content Here </div>
This code will create a black dotted border around the specified content. You can customize the color, width, and other properties to suit your design.