Skip to content
This repository has been archived by the owner on Apr 11, 2022. It is now read-only.

Smtpjs #63

Open
StoneMcYT opened this issue Oct 31, 2021 · 2 comments · May be fixed by #83
Open

Smtpjs #63

StoneMcYT opened this issue Oct 31, 2021 · 2 comments · May be fixed by #83

Comments

@StoneMcYT
Copy link
Contributor

https://smtpjs.com/
Just gotta add this here so it appears on todo

@0xMukesh
Copy link
Contributor

https://smtpjs.com/ Just gotta add this here so it appears on todo

🤔 I'll add to contact us backend tomorrow

@0xMukesh
Copy link
Contributor

0xMukesh commented Nov 8, 2021

@StoneMcYT
The working code is down below

function sendEmail() {
  var EmailInput = document.getElementById("email").value;
  var MessageInput = document.getElementById("message").value;
  var NameInput = document.getElementById("name").value;
  Email.send({
    SecureToken: "",
    To: "",
    From: EmailInput,
    Subject: "Support Ticket",
    Body: MessageInput + "\n \n From:" + NameInput,
  }).then(function (message) {
    alert(
      "Thank you for reaching out to ASEAN BTE. This is an automated message to notify you that we have received your ticket and one of our team members will get back to you to assist with this matter."
    );
  });
}

@StoneMcYT StoneMcYT self-assigned this Nov 8, 2021
@tintinkung tintinkung linked a pull request Nov 11, 2021 that will close this issue
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants