1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2024-12-18 03:09:32 +01:00
openstamanager/modules/stato_email/actions.php
2019-10-29 16:29:59 +01:00

21 lines
339 B
PHP

<?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;
}