openstamanager/modules/smtp/actions.php

86 lines
2.4 KiB
PHP
Raw Normal View History

<?php
2019-08-26 18:04:49 +02:00
use Notifications\EmailNotification;
include_once __DIR__.'/../../core.php';
switch (post('op')) {
case 'add':
2019-08-26 18:02:05 +02:00
$dbo->insert('em_accounts', [
2018-07-19 15:33:32 +02:00
'name' => post('name'),
'from_name' => post('from_name'),
'from_address' => post('from_address'),
]);
$id_record = $dbo->lastInsertedID();
2018-07-19 17:29:21 +02:00
flash()->info(tr('Nuovo account email aggiunto!'));
break;
case 'update':
2018-09-27 12:54:57 +02:00
$predefined = post('predefined');
if (!empty($predefined)) {
2019-08-26 18:02:05 +02:00
$dbo->query('UPDATE em_accounts SET predefined = 0');
2018-09-27 12:54:57 +02:00
}
2019-08-26 18:02:05 +02:00
$dbo->update('em_accounts', [
2018-07-19 15:33:32 +02:00
'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'),
'timeout' => post('timeout'),
2018-12-28 08:07:56 +01:00
'ssl_no_verify' => post('ssl_no_verify'),
2018-09-27 12:54:57 +02:00
'predefined' => $predefined,
], ['id' => $id_record]);
2018-07-19 17:29:21 +02:00
flash()->info(tr('Informazioni salvate correttamente!'));
2018-03-02 19:01:30 +01:00
// Validazione indirizzo email mittente
2018-07-19 15:33:32 +02:00
$check_email = Validate::isValidEmail(post('from_address'));
2019-11-19 16:08:40 +01:00
// Controllo sulla validazione
2019-11-19 16:08:40 +01:00
if (!empty($check_email['valid-format'])) {
2018-07-19 17:29:21 +02:00
flash()->info(tr('Sintassi email verificata'));
2019-11-19 16:08:40 +01:00
} else {
2018-07-19 17:29:21 +02:00
flash()->error(tr("Attenzione: l'indirizzo email _EMAIL_ sembra non essere valido", [
'_EMAIL_' => post('from_address'),
]));
}
// Controllo sulla verifica
if (!empty($check_email['smtp-check'])) {
flash()->info(tr('SMTP email verificato'));
} else {
flash()->warning(tr('SMTP email non verificato'));
}
2019-07-25 17:20:24 +02:00
if (isAjaxRequest()) {
echo json_encode(['id' => $id_record]);
}
break;
case 'test':
2019-08-26 18:04:49 +02:00
$mail = new EmailNotification($id_record);
2019-04-12 01:11:32 +02:00
echo json_encode([
'test' => $mail->testSMTP(),
]);
2018-06-29 16:19:48 +02:00
break;
case 'delete':
2019-08-26 18:02:05 +02:00
$dbo->query('UPDATE em_accounts SET deleted_at = NOW() WHERE id='.prepare($id_record));
2018-07-19 17:29:21 +02:00
flash()->info(tr('Account email eliminato!'));
break;
}