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

MySQL 8.0.16 Win10 zip version installation and configuration graphic tutorial

This article shares with you the installation and...

Vue implements star rating with decimal points

This article shares the specific code of Vue to i...

Detailed process of implementing the 2048 mini game in WeChat applet

Rendering Example Code Today we are going to use ...

MySQL 8.0.21 installation steps and problem solutions

Download the official website First go to the off...

CSS makes tips boxes, bubble boxes, and triangles

Sometimes our pages will need some prompt boxes o...

Example of how to configure the MySQL database timeout setting

Table of contents Preface 1. JDBC timeout setting...

Solve the problem of docker container exiting immediately after starting

Recently I was looking at how Docker allows conta...

Common tags in XHTML

What are XHTML tags? XHTML tag elements are the b...

VMware + Ubuntu18.04 Graphic Tutorial on Building Hadoop Cluster Environment

Table of contents Preface VMware clone virtual ma...

This article will show you how to use Vue 3.0 responsive

Table of contents Use Cases Reactive API related ...

HTML+jQuery to implement a simple login page

Table of contents Introduction Public code (backe...

Mount the disk in a directory under Ubuntu 18.04

Introduction This article records how to mount a ...

Reasons and solutions for slow MySQL query stuck in sending data

Because I wrote a Python program and intensively ...

How to install and configure the Docker Compose orchestration tool in Docker.v19

1. Introduction to Compose Compose is a tool for ...