PHPackages                             nuxia/mail-storage-bundle - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Mail &amp; Notifications](/categories/mail)
4. /
5. nuxia/mail-storage-bundle

ActiveSymfony-bundle[Mail &amp; Notifications](/categories/mail)

nuxia/mail-storage-bundle
=========================

Bundle to store your sent mail

06.4kPHP

Since Feb 1Pushed 9y ago5 watchersCompare

[ Source](https://github.com/nuxia/MailStorageBundle)[ Packagist](https://packagist.org/packages/nuxia/mail-storage-bundle)[ RSS](/packages/nuxia-mail-storage-bundle/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependenciesVersions (4)Used By (0)

MailStorageBundle
=================

[](#mailstoragebundle)

[![SensioLabsInsight](https://camo.githubusercontent.com/35fdf216c8855b212cb759d6dd117e73643ccb010b49d1d787de338148964fc7/68747470733a2f2f696e73696768742e73656e73696f6c6162732e636f6d2f70726f6a656374732f64313033346633392d643738302d343236632d623634632d3637633163316131653062622f6269672e706e67)](https://insight.sensiolabs.com/projects/d1034f39-d780-426c-b64c-67c1c1a1e0bb)

Bundle to store your sent mail

Installation:
-------------

[](#installation)

### Step 1 : composer

[](#step-1--composer)

```
composer require nuxia/mail-storage-bundle: "dev-master"

```

### Step 2 : MailEntry entity

[](#step-2--mailentry-entity)

```
# MailEntry.orm.yml
MyApp\Entity\MailEntry:
    type: "entity"
    table: "your__mail_storage_table"
    id:
        id:
            type: "string"
            length: "32"
            generator:
                strategy: "NONE"
    indexes:
        mle_id_i:
            columns: "id"
        mle_object_i:
            columns: "object"
        mle_object_id_i:
            columns: "object_id"
        mle_reference_i:
            columns: "reference"
        mle_language_i:
            columns: "language"
        mle_subject_i:
            columns: "subject"
        mle_status_i:
            columns: "status"
        mle_created_att_i:
            columns: "created_at"
        mle_sent_at_i:
            columns: "sent_at"
```

```
