diff --git a/assets/CV_Stephan.pdf b/assets/CV_Stephan.pdf index 665cadc..bcfc97d 100644 Binary files a/assets/CV_Stephan.pdf and b/assets/CV_Stephan.pdf differ diff --git a/scripts/main.js b/scripts/main.js index e8d31ae..0315673 100755 --- a/scripts/main.js +++ b/scripts/main.js @@ -678,7 +678,7 @@ const app = Vue.createApp({ phone2: "(+261) 32 84 688 57", emailLabel: { en: "Email", fr: "Email" }, email1: "christianstephanjosue@gmail.com", - email2: "schristian@bocasay.com", + email2: "", form: { customerNameLabel: { en: "Name", fr: "Nom" }, @@ -1000,6 +1000,11 @@ const app = Vue.createApp({ } }, + sendAknowledgmentReceipt(formData) { + const url = "https://f6c2io.buildship.run/receipt-aknowlegment"; + fetch(url, { method: "POST", body: formData }).catch((err) => console.log(err)); + }, + // contact form validation contactFormValidation() { // contact form @@ -1215,6 +1220,9 @@ const app = Vue.createApp({ // end loading spinner this.endLoading(); + + // send aknowledgment receipt + this.sendAknowledgmentReceipt(formData); }) .catch((err) => console.log(err)); },