Call the system front-end e-mail, phone calls

I met a demand, front-end system called directly E-mail.

Mail front-end system calls

Html later found in a label gave us a direct method:

<a href="mailto:[email protected]">到吴迪的邮箱</a>

mailto heel is the recipient
may use the parameter list

parameter Meaning the value of
to Addressee
subject theme
cc Cc
bcc BCC
body content

Just add mailto href address in front of: can, fill behind the email address, the effect Mimi da ~ Windows, MAC, Android, IOS have perfect control!

Use all the parameters:

<a href="mailto:[email protected]?subject=test&[email protected]&body=use mailto sample">send mail</a>
The second method is to use a form Form ways:
<form name='sendmail' action='mailto:[email protected]'>
    <input name='cc' type='text' value='[email protected]'>
    <input name='subject' type='text' value='test'>
    <input name='body' type='text' value='use mailto sample'>
</form>



The front end of the phone call system

Also the use of a html tag:

<a href="tel:176xxxxxxxx">给176xxxxxxxx打电话</a>

Just add tel in front of the href address: back to keep the phone number can be. The effect is very perfect ~ Windows, MAC, Android, IOS have perfect control!

Published 293 original articles · won praise 2381 · Views 3.14 million +

Guess you like

Origin blog.csdn.net/weixin_43606158/article/details/104506654