1. Go to this page and download the library: Download adt/mail-queue library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
adt / mail-queue example snippets
namespace App\Model\Entity;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Entity
*/
class QueueEntity extends \ADT\MailQueue\Entity\AbstractMailQueueEntry {
/**
* @ORM\Column(type="text")
*/
protected $customProperty;
}