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

Detailed installation and configuration of hadoop2.7.2 under ubuntu15.10

There are many Hadoop installation tutorials on L...

Tutorial on installing MySQL 5.6 on CentOS 6.5

1. Download the RPM package corresponding to Linu...

A brief discussion on MySQL count of rows

We are all familiar with the MySQL count() functi...

A little-known JS problem: [] == ![] is true, but {} == !{} is false

console.log( [] == ![] ) // true console.log( {} ...

JavaScript example code to determine whether a file exists

1. Business Scenario I have been doing developmen...

Detailed explanation of Vue development Sort component code

Table of contents <template> <ul class=&...

Common functions of MySQL basics

Table of contents 1. Common function classificati...

Windows system mysql5.7.18 installation graphic tutorial

MySQL installation tutorial for Windows system do...

Use CSS to switch between dark mode and bright mode

In the fifth issue of Web Skills, a technical sol...

MySQL series: redo log, undo log and binlog detailed explanation

Implementation of transactions The redo log ensur...

CentOS 7 installation and configuration method graphic tutorial

This article records the detailed installation tu...

Basic concepts and common methods of Map mapping in ECMAScript6

Table of contents What is a Mapping Difference be...

A Preliminary Study on Vue Unit Testing

Table of contents Preface Why introduce unit test...

MySQL 8.0.12 installation and configuration method graphic tutorial (windows10)

This article records the installation graphic tut...

How to use CSS to pull down a small image to view a large image and information

Today I will talk about a CSS special effect of h...