Sending emails in html is easy with Mailto

Sending emails in html is easy with Mailto
Recently, I added a click-to-send email function to the customer's footer mailbox. I searched Baidu and found that the solution is very simple.

1 Simply make a link

Copy code
The code is as follows:

<a href="Mailto:[email protected]">Send me an email</a>

2. Complex link code:

Copy code
The code is as follows:

<pre name="code" class="html"><a href="Mailto:[email protected][email protected]&[email protected]&Subject=Hello&Body=你好">Send me an email</a></pre>


<pre></pre>
Parameter Description:
<p style="color:rgb(51,51,51); font-family:Arial; font-size:14px; line-height:26px">
</p>
<p style="color:rgb(51,51,51); font-family:Arial; font-size:14px; line-height:26px">
CC: carbon copy address;</p>
<p style="color:rgb(51,51,51); font-family:Arial; font-size:14px; line-height:26px">
BCC: Blind carbon copy address;</p>
<p style="color:rgb(51,51,51); font-family:Arial; font-size:14px; line-height:26px">
Subject: topic;</p>
<p style="color:rgb(51,51,51); font-family:Arial; font-size:14px; line-height:26px">
Body: Email content. </p>
<p style="color:rgb(51,51,51); font-family:Arial; font-size:14px; line-height:26px">
Note: Use ";" to separate multiple email addresses. </p>

<<:  Vue3 setup() advanced usage examples detailed explanation

>>:  Sample code for implementing honeycomb/hexagonal atlas with CSS

Recommend

JS+Canvas realizes dynamic clock effect

A dynamic clock demo based on Canvas is provided ...

Native js implementation of magnifying glass component

This article example shares the specific code for...

mysql row column conversion sample code

1. Demand We have three tables. We need to classi...

Recommend a cool flashing alarm button

The effect is as follows: The code is as follows ...

Theory Popularization——User Experience

1. Concept Analysis 1: UE User Experience <br ...

How to use iostat to view Linux hard disk IO performance

TOP Observation: The percentage of CPU time occup...

Linux touch command usage examples

Detailed explanation of linux touch command: 1. C...

Linux disk sequential writing and random writing methods

1. Introduction ● Random writing will cause the h...

Automatic backup of MySQL database using shell script

Automatic backup of MySQL database using shell sc...

Service management of source package installation under Linux

Table of contents 1. Startup management of source...

MySQL slow query operation example analysis [enable, test, confirm, etc.]

This article describes the MySQL slow query opera...

Basic Implementation of AOP Programming in JavaScript

Introduction to AOP The main function of AOP (Asp...