mailto link is blocked as insecure content in Chrome Gmail

折月煮酒 提交于 2019-12-01 17:53:38
CoreyOConnor

From here: mailto link not working within a frame chrome (over https)

The suggestion is to use target="_top" instead of target="_blank".

Add target="_blank" to the mailto link.

I found simple solution for it just add https:// before your form action like:

<a href="mailto:user@example.com">Email the user.</a>

Change it to :

<a href="https://mailto:user@example.com">Email the user.</a>

I solved my issue by doing this I hope this work for you. If you get the solution please mark as solution. Thank you.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!