1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2024-12-28 08:40:41 +01:00
openstamanager/modules/stato_email/actions.php
2020-02-14 17:02:16 +01:00

21 lines
339 B
PHP
Executable File

<?php
include_once __DIR__.'/../../core.php';
switch (post('op')) {
case 'retry':
$mail->attempt = 0;
$mail->save();
break;
case 'delete':
if (empty($mail->sent_at)) {
$mail->delete();
flash()->info(tr('Email rimossa dalla coda di invio!'));
}
break;
}