Home >Web Front-end >HTML Tutorial >Use of mailto_html/css_WEB-ITnose

Use of mailto_html/css_WEB-ITnose

WBOY
WBOYOriginal
2016-06-24 11:44:281342browse

mailto will use the mail that comes with Windows to send emails

Method 1, the code is as follows:

[Note: Check out the form The value of the name in the element cannot be changed]

<form action="mailto:lisi@126.com">     <table id="tbMail">         <tr>             <td>收件人</td>             <td><input type="text" name="to"/></td>         </tr>         <tr>             <td>主题</td>             <td><input type="text" name="subject"/></td>         </tr>         <tr>             <td>抄送</td>             <td><input type="text" name="cc"/></td>         </tr>         <tr>             <td>暗送</td>             <td><input type="text" name="bcc"/></td>         </tr>         <tr>             <td>内容</td>             <td><input type="text" name="body"/></td>         </tr>         <tr>             <td></td>             <td><input type="submit" value="发送"/></td>         </tr>     </table> </form>

is shown below. For the css style used, see the

method Two , use a tag:

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn