blob: a43dbd2fb1bf2b5cc6bbb427f34b26289b83158b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
const function sendMail() {
console.log("BLARGH");
const $form = Array.prototype.slice.call(document.querySelectorAll('#contact-form'), 0);
console.log(form);
// Email.send({
// SecureToken : "12ef64f4-0d3e-4d4c-8336-eef6b89645f1",
// To : "amy@carpentertutoring.com",
// From : "",
// Subject : "Carpenter Tutoring Inquiry",
// Body : ""
// }).then(
// message => alert(message)
// );
}
|