1
1
mirror of https://github.com/neosubhamoy/neosubhamoy-portfolio.git synced 2025-12-20 03:29:35 +05:30

(feat): added contact form submission notification via email

This commit is contained in:
2023-12-10 23:57:58 +05:30
parent cec8a42a52
commit 88839cd861
3 changed files with 61 additions and 9 deletions

View File

@@ -36,7 +36,7 @@ $(document).ready(function() {
success: function(response) {
if (response.alert && response.alertType) {
console.log(response.alert);
show_alert(response.alert, response.alertType);
}
},
error: function(jqXHR, textStatus, errorThrown) {
@@ -44,7 +44,6 @@ $(document).ready(function() {
},
complete: function() {
$(sendBtn).html("SEND <i class='fa-regular fa-paper-plane ml-2'></i>");
console.log("completed");
}
});
}