PHPMailer

This commit is contained in:
aschwarz
2023-04-27 17:15:50 +02:00
parent de6abfa26c
commit 1235a0e270
167 changed files with 32558 additions and 22071 deletions

View File

@ -1,22 +1,22 @@
function onClickSaveParameter() {
var inputs = $(":input").serializeArray()
inputs = JSON.stringify(inputs)
$.ajax({
type: 'POST',
url: '../controller/admin_parameter.php',
data: {
'function': 'saveParameter',
'inputs': inputs
},
success: function(result) { //we got the response
if(result!=''){
var a = result.split('|***|');
$('#msg').show().delay(5000).fadeOut(500);
$('#msg').html(a[0]);
}
},
error: function(xhr, status, exception) {
console.log(xhr);
}
});
function onClickSaveParameter() {
var inputs = $(":input").serializeArray()
inputs = JSON.stringify(inputs)
$.ajax({
type: 'POST',
url: '../controller/admin_parameter.php',
data: {
'function': 'saveParameter',
'inputs': inputs
},
success: function(result) { //we got the response
if(result!=''){
var a = result.split('|***|');
$('#msg').show().delay(5000).fadeOut(500);
$('#msg').html(a[0]);
}
},
error: function(xhr, status, exception) {
console.log(xhr);
}
});
}