LoginSignup
2
6

More than 5 years have passed since last update.

javascriptでtextboxをbodyにしてメーラ起動する

Last updated at Posted at 2016-09-27

htmlのtextboxの内容を、javascriptでメーラ起動する

システムからメールを送るのではなく、ユーザのメーラで送るようにするためにやってみた。
hrefのリンクだとtarget _blankつければいいけど、javascriptなので、window.openにする。

<script type="text/javascript">
  function logsend()
  {
    mail = "メールアドレス"
    title = "メール件名"
    text = document.getElementById('id_textbox').value
    window.open().location.href = "mailto:" + mail + "?subject=" + title + "&body=" + text;
   }
</script>
<input type="text" id="id_textbox">
2
6
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
6