打开gmail撰写的html按钮?

时间:2018-06-05 01:26:39

标签: html web gmail no-database

我想在我的网站上有一个联系人按钮,当用户点击Gmail电子邮件时,Gmail邮件地址中的邮件已打开。任何人都知道如何实现这个目标?

1 个答案:

答案 0 :(得分:0)

我用Open Gmail on mailto: action

的解决方案做了一个例子



$('#go').click(function(event){
var email =  $('#email').val();
if(email)
window.location.href = 'https://mail.google.com/mail/?view=cm&fs=1&to='+email;
else
alert('please enter your email');
})

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<span>Please Enter Your Email And Go</span>
<br />
<input id="email" />

<button id="go">Go!</button>
&#13;
&#13;
&#13;