fission-codes / landing-page

Fission home page
https://fission.codes
Other
9 stars 2 forks source link

Replace contact form on support with Missive Chat #19

Closed bmann closed 4 years ago

bmann commented 4 years ago

Let's replace the contact form, which is using https://formsubmit.co/ but not delivering to support, with Missive Chat.

Missive Chat is setup, and is powered by Twilio underneath, but is free for < 200 chats.

If no one is online, then it falls back to asking for email.

I think everyone should have access to settings within Missive.

Docs are here: https://missiveapp.com/features/missive-chat/documentation

<!-- Missive Chat -->
<script>
  (function(d, w) {
    w.MissiveChatConfig = {
      "id": "91a74dc2-1b64-4f99-890f-e90f86e40362"
    };

    var s = d.createElement('script');
    s.async = true;
    s.src = 'https://webchat.missiveapp.com/' + w.MissiveChatConfig.id + '/missive.js';
    if (d.head) d.head.appendChild(s);
  })(document, window);
</script>
<!-- /Missive Chat -->