If in case you copy and paste an e-mail address from your inbox into dreamweaver it normally automatically generates the e-mail link code . If it does’nt here’s what needs to be done . You will also need these codes if your editing in notepad or if your linking a word/ sentence to the e-mail .
example :
<a href=” mailto:example@example.com”> example@example.com </a>
As mentioned – you can also link text
example :
<a href=”mailto:example@example.com” > text example here </a>
To add Cc :
<a href="mailto:example@example.com?cc=example2@example.com">example@example.com</a>
Similarly for Bcc :
<a href="mailto:example@example.com?bcc=example3@example.com">example@example.com</a>
To add SUBJECT :
<a href=”mailto:example@example.com ?subject=example”> example@example.com </a>
If your adding both SUBJECT and CC together then separate the two with an ” & ” between them.
example :
<a href=”mailto:example@example.com ?cc=example2@example.com&subject=example” > example@example.com</a>
