├── Bootstrap.php ├── LICENSE ├── MailQueue.php ├── Message.php ├── README.md ├── commands └── MailQueueController.php ├── composer.json ├── migrations ├── m150302_051519_mailqueue_init.php ├── m160118_081152_add_timetosend_column.php ├── m161111_080914_add_swift_message_column_to_mail_queue_table.php ├── m170217_124201_drop_obsolete_columns_from_mail_queue_table.php ├── m170221_090302_add_sent_time_index.php └── m170510_063111_alter_text_fields.php └── models └── Queue.php /Bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nterms/yii2-mailqueue/HEAD/Bootstrap.php -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nterms/yii2-mailqueue/HEAD/LICENSE -------------------------------------------------------------------------------- /MailQueue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nterms/yii2-mailqueue/HEAD/MailQueue.php -------------------------------------------------------------------------------- /Message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nterms/yii2-mailqueue/HEAD/Message.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nterms/yii2-mailqueue/HEAD/README.md -------------------------------------------------------------------------------- /commands/MailQueueController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nterms/yii2-mailqueue/HEAD/commands/MailQueueController.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nterms/yii2-mailqueue/HEAD/composer.json -------------------------------------------------------------------------------- /migrations/m150302_051519_mailqueue_init.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nterms/yii2-mailqueue/HEAD/migrations/m150302_051519_mailqueue_init.php -------------------------------------------------------------------------------- /migrations/m160118_081152_add_timetosend_column.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nterms/yii2-mailqueue/HEAD/migrations/m160118_081152_add_timetosend_column.php -------------------------------------------------------------------------------- /migrations/m161111_080914_add_swift_message_column_to_mail_queue_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nterms/yii2-mailqueue/HEAD/migrations/m161111_080914_add_swift_message_column_to_mail_queue_table.php -------------------------------------------------------------------------------- /migrations/m170217_124201_drop_obsolete_columns_from_mail_queue_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nterms/yii2-mailqueue/HEAD/migrations/m170217_124201_drop_obsolete_columns_from_mail_queue_table.php -------------------------------------------------------------------------------- /migrations/m170221_090302_add_sent_time_index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nterms/yii2-mailqueue/HEAD/migrations/m170221_090302_add_sent_time_index.php -------------------------------------------------------------------------------- /migrations/m170510_063111_alter_text_fields.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nterms/yii2-mailqueue/HEAD/migrations/m170510_063111_alter_text_fields.php -------------------------------------------------------------------------------- /models/Queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nterms/yii2-mailqueue/HEAD/models/Queue.php --------------------------------------------------------------------------------