Vue

by stofke

JavaScript

var root = document.body


var sendEmail = {
  view: function() {
    return m("main", [
      m("h1", {
        class: "title"
      }, "My first app"),
      m("button", {
        onclick: function() {
          let email = '[email protected]';
          let cc = '[email protected], [email protected]';
          let bcc = '[email protected]';
          let subject = 'Test';
          let emailBody = 'Hi Sample,';
          let attach = 'path';
          document.location = "mailto:" + email + "?cc=" + cc + "&bcc=" + bcc + "&subject=" + subject + "&body=" + emailBody;
        }
      }, "Send mail")
    ])
  }
}

m.mount(root, sendEmail)