No, but you can delete it from the web interface and then run the "delete-campaigns" command, which deletes all pending-delete campaigns.is possible delete a single campaign by ID from command line ( console.php ) ?
edit: or, if possible, from SQL with a query.
DELETE FROM mw_campaign WHERE campaign_id=3;
That's correct, not possible.Also mark as sent is not possibile from command line, right?
Like above, you shouldn't do this outside the app because the app itself does a lot of work, but there you go:From sql side i could mark as sent ?
update mw_campaign set `status` = 'sent' where campaign_id = 3;