openstamanager/modules/smtp/actions.php

77 lines
2.6 KiB
PHP
Raw Normal View History

<?php
include_once __DIR__.'/../../core.php';
switch (post('op')) {
case 'add':
$dbo->insert('zz_smtp', [
'name' => $post['name'],
'from_name' => $post['from_name'],
'from_address' => $post['from_address'],
]);
$id_record = $dbo->lastInsertedID();
$_SESSION['infos'][] = tr('Nuovo account email aggiunto!');
break;
case 'update':
$dbo->update('zz_smtp', [
'name' => $post['name'],
'note' => $post['note'],
'server' => $post['server'],
'port' => $post['port'],
'username' => $post['username'],
'password' => $post['password'],
'from_name' => $post['from_name'],
'from_address' => $post['from_address'],
'encryption' => $post['encryption'],
'pec' => $post['pec'],
'main' => $post['main'],
], ['id' => $id_record]);
if (!empty($post['main'])) {
$dbo->query('UPDATE zz_smtp SET main = 0 WHERE id != '.prepare($id_record));
}
$_SESSION['infos'][] = tr('Informazioni salvate correttamente!');
2018-03-02 19:01:30 +01:00
// Validazione indirizzo email mittente
$check_email = Validate::isValidEmail($post['from_address']);
2018-03-02 19:01:30 +01:00
// Se $check_email non è null e la riposta è negativa --> mostro il messaggio di avviso.
if (!empty($check_email)) {
$_SESSION['infos'][] = tr('Sintassi email verificata');
if (is_object($check_email) && $check_email->smtp) {
if ($check_email->smtp_check) {
$_SESSION['infos'][] = tr('SMTP email verificato');
} elseif (!$check_email->smtp_check) {
$_SESSION['warnings'][] = tr('SMTP email non verificato');
} else {
$_SESSION['errors'][] = tr("Attenzione: l'SMTP email _EMAIL_ sembra non essere valido", [
'_EMAIL_' => $check_email->email,
]);
}
2018-03-01 22:05:54 +01:00
}
} else {
$_SESSION['errors'][] = tr("Attenzione: l'indirizzo email _EMAIL_ sembra non essere valido", [
'_EMAIL_' => $check_email->email,
]);
if (is_object($check_email) && !empty($check_email->error->info)) {
$_SESSION['errors'][] = $check_email->error->info;
}
}
break;
case 'delete':
$dbo->query('UPDATE zz_smtp SET deleted = 1 WHERE id='.prepare($id_record));
$_SESSION['infos'][] = tr('Account email eliminato!');
break;
}