How can I <iframe> Gmail?

前端 未结 2 1597
猫巷女王i
猫巷女王i 2020-12-03 17:32

I know that Gmail might put some security measures in place to prevent this, but I really need to put Gmail inside an element.

The two following methods don\'t work

相关标签:
2条回答
  • 2020-12-03 17:58

    You cannot. GMail, like most of Google's other web services, sets the HTTP header:

    X-Frame-Options: SAMEORIGIN
    

    which disallows their site from being framed by any site other than GMail itself.

    0 讨论(0)
  • 2020-12-03 17:59

    You would be better off using Google API. http://code.google.com/appengine/docs/python/mail/

    Although not a solution to your question I believe this is an appropriate alternative.

    0 讨论(0)
提交回复
热议问题