<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>創建電子郵件鏈接</title> </head> <body> <p>簡單創建電子郵件鏈接 <a href="mailto:someone@example.com?Subject=Hello%20again" target="_top">發送郵件</a> </p> <p>復雜創建電子郵件鏈接 <a href="mailto:someone@exmple.com?cc="someoneelse@example.com&bcc=andsomeoneelse@example.com&subject=Summer%20Party&body=You%20are%20invited%20to%20a%20big%20summer%20party!" target="_top">發送郵件!</a> </p> <p> <b>注意:</b>單詞直接空格使用 %20 代替,以確保瀏覽器可以正常顯示文本。 </p> </body> </html>