Important

You are browsing the documentation for version 4.2 of OroCommerce, OroCRM and OroPlatform, which is no longer maintained. Read version 5.1 (the latest LTS version) of the Oro documentation to get up-to-date information.

See our Release Process documentation for more information on the currently supported and upcoming releases.

Emails

Email Templates

Communicating with customers is an important part of every business. In OroPlatform, an email address is represented by the Oro\Bundle\EmailBundle\Entity\EmailAddress class.

When creating emails, your may reuse the text that is frequently sent for a certain purpose. For this, they can create templates and reuse them as needed. Besides letting the users create and manage templates through the UI, every bundle can provide their own email templates.

Providing e-mail templates is nothing more than creating Twig templates for the desired format (namely HTML or plaintext) in which you can use some pre-defined placeholders to define template metadata. Then you create a data fixture that implements the AbstractEmailFixture class. This class provides a getEmailsDir() method which should return the path of the directory that contains your templates:

src/Acme/Bundle/DemoBundle/DataFixtures/ORM/EmailTemplatesFixture.php
 namespace Acme\Bundle\DemoBundle\DataFixtures\ORM;

 use Oro\Bundle\EmailBundle\Migrations\Data\ORM\AbstractEmailFixture;

 class EmailTemplatesFixture extends AbstractEmailFixture
 {
     public function getEmailsDir()
     {
         return $this->container
             ->get('kernel')
             ->locateResource('@AcmeDemoBundle/Resources/emails');
     }
 }

The format of the email template is determined based on the filename extension you use:

Extension

E-Mail Format

.html.twig, .html

HTML

.txt.twig, .txt

Plaintext

HTML is used as the default format if none could be derived from the filename extension.

Template Metadata

Additionally to the e-mail body, the template must contain some special parameters to add some metadata to the template:

Parameter

Mandatory

Description

@entityName

yes

The fully-qualified class name of the e-mail owner entity (for example Acme\Bundle\DemoBundle\Entity\Applicant).

@subject

yes

The e-mail subject.

@name

no

The template name that is visible in the UI (the filename without the extension is used when this parameter is not set).

@isSystem

no

Set it to 1 to indicate that this is a system template.

@isEditable

no

If set to 1 and @isSystem is 1 too, the template can be edited in the user interface.

Note

The details on template variables are described in details in the relevant email documentation.

Sending Emails

Create an Email

An email that is created and sent by OroPlatform is centered around the Oro\Bundle\EmailBundle\Form\Model\Email model class which reflects all the properties of an email.

There are two ways to create a new email:

  1. Manually create an email

  2. Use the email builder class

Create an Email Manually

You can manually create an email by creating a new instance of the Email model class and call the setter methods for all the properties you want to be set:

src/Acme/DemoBundle/Controller/EmailController.php
 namespace Acme\DemoBundle\Controller;

 use Oro\Bundle\EmailBundle\Form\Model\Email;
 use Oro\Bundle\EmailBundle\Form\Model\EmailAttachment;
 use Symfony\Bundle\FrameworkBundle\Controller\Controller;

 class EmailController extends Controller
 {
     public function sendMailAction()
     {
         $email = new Email();

         // the sender
         $email->setFrom('chris@example.com');

         // recipient(s)
         $email->setTo(['alice@example.com', 'bob@example.com']);

         // CC recipient(s)
         $email->setCc(['dave@example.com', 'eric@example.com']);

         // BCC recipient(s)
         $email->setBcc(['ryan@example.com', 'jonathan@example.com']);

         // the subject
         $email->setSubject(...);

         // a template to create the email body, the passed template
         // must be an instance of Oro\Bundle\EmailBundle\Entity\EmailTemplate
         $email->setTemplate(...);

         // a context that will be passed to the template set with setTemplate()
         $email->setContexts([...]);

         // the email type (either html or text)
         $email->setType(...);

         // as an alternative to using a template (see above) you can also
         // directly set the email body
         $email->setBody(...);

         // email attachments (instances of  Oro\Bundle\EmailBundle\Form\Model\EmailAttachment
         $email->addAttachment($attachment);

         // ...
     }
 }

The EmailModelBuilder Class

An alternative approach to manually creating Email models is to use the EmailModelBuilder helper class which offers several methods to create new emails based on existing data:

createEmailModel

Create a new email or add missing data to an existing email.

createReplyEmailModel

Create an email that is a response to an existing email.

createReplyAllEmailModel

Create an email that is a response to all recipients and the sender of an existing email.

createForwardEmailModel

Create a new email that forwards an existing email.

After emails have been processed (see below), they will be persisted to the database. You can create an email model based on such a persisted entity, by using the useful EmailModelBuilder helper class:

src/Acme/DemoBundle/Controller/EmailController.php
 namespace Acme\DemoBundle\Controller;

 use Symfony\Bundle\FrameworkBundle\Controller\Controller;

 class EmailController extends Controller
 {
     public function sendMailAction()
     {
         // ...
     }
 }

Send the Email

When you created your email model, you can use the integrated mailer processor which is responsible for sending the email and persisting it to the database (which also creates the needed contexts to customers, users, and so on):

src/Acme/DemoBundle/Controller/EmailController.php
 namespace Acme\DemoBundle\Controller;

 // ...

 class EmailController extends Controller
 {
     public function sendMailAction()
     {
         // ...
         $email = ...;

         $processor = $this->get('oro_email.mailer.processor');
         $processor->process($email);
     }
 }

When calling the Oro\Bundle\EmailBundle\Mailer\Processor::process the mailer processor performs the following steps:

  1. It creates a new \Swift_Message instance and populate it with the data from your Email object.

  2. If you did not pass an EmailOrigin object which should be used to associate the mail in the user interface with, the processor will create on based on the sender address and the selected organization.

  3. The email will be sent based on your application’s SwiftMailer configuration (if the current user configured a custom SMTP server in their settings, the configured server will be used instead).

  4. The sent email is persisted to the database storing all necessary information to be able to view it again in the future through the user interface.

  5. All the persisted data is returned as an instance of the Oro\EmailBundle\Entity\EmailUser.

Receive Email Notifications

Sometimes you want to receive emails when entities of a particular class are written to the database. To achieve this OroPlatform comes with the NotificationBundle. This bundle registers an event listener that is executed whenever a Doctrine entity is created, updated or removed.

To be notified by such an event, you have to create an Oro\Bundle\NotificationBundle\Entity\EmailNotification that contains all the necessary information. The easiest way to register a new EmailNotification is to create data fixtures:

src/Acme/DemoBundle/Migrations/Data/ORM/CreateCommentNotification.php
 namespace Acme\DemoBundle\Migrations\Data\ORM;

 use Doctrine\Common\DataFixtures\AbstractFixture;
 use Doctrine\Persistence\ObjectManager;
 use Oro\Bundle\NotificationBundle\Entity\EmailNotification;
 use Oro\Bundle\NotificationBundle\Entity\RecipientList;

 class CreateCommentNotification extends AbstractFixture
 {
     public function load(ObjectManager $manager)
     {
         $notification = new EmailNotification();

         // the FQCN of the entity
         $notification->setEntityName('Acme\DemoBundle\Entity\Comment');

         // the event to be notified of, pre-defined event names are
         // oro.notification.event.entity_post_update, oro.notification.event.entity_post_remove
         // and oro.notification.event.entity_post_persist
         $notification->setEventName('oro.notification.event.entity_post_persist');

         // recipients must be an instance of Oro\Bundle\NotificationBundle\Entity\RecipientList
         // which represents a collection of recipients, each recipient can either be an email
         // address, a User object, or a Group object
         $recipients = new RecipientList();
         $groupRepository = $manager->getRepository('Oro\Bundle\UserBundle\Entity\Group');
         $group = $groupRepository->findOneByName('Moderator');
         $recipients->addGroup($group);

         $notification->setRecipientList($recipients);

         // the EmailTemplate that is used to render the email body
         $emailTemplateRepository = $manager->getRepository('Oro\Bundle\EmailBundle\Entity\EmailTemplate');
         $template = $emailTemplateRepository->findByName('comment_created_notification');
         $notification->setTemplate($template);

         $manager->persist($notification);
         $manager->flush();
     }
 }

Email Address Owners

Each email address is owned by exactly one entity. In OroPlatform, User entities and Contact entities can be owners of an email address. Supposed you want to use the CRM to keep track of all people that apply to your company. You will then probably create an Applicant entity and want to associate an email address to each of them. To let your own entities own an email address, you have to follow a few steps:

  1. Create an entity that is responsible for storing the email address.

  2. Create a new owner of an email address.

  3. Publish a provider that makes it possible to search for the owner of a particular email address.

  4. Update the database schema and clear the cache.

Implement the Email Entity

Each entity owning an email address must have its own email entity that implements the Oro\Bundle\EmailBundle\Entity\EmailInterface. This interface defines four methods:

getEmailField()

Returns the name of the database table column that holds the actual email address.

getId()

A unique identifier to find a particular email address entity in the database.

getEmail()

This method returns the actual email address.

getEmailOwner()

The entity that owns a certain email address.

Sample Email entity:

src/Acme/Bundle/DemoBundle/Entity/ApplicantEmail.php
 namespace Acme\Bundle\DemoBundle\Entity;

 use Doctrine\ORM\Mapping as ORM;
 use Oro\Bundle\EmailBundle\Entity\EmailInterface;

 /**
  * @ORM\Entity()
  */
 class ApplicantEmail implements EmailInterface
 {
     /**
      * @ORM\Id
      * @ORM\Column(type="integer", name="id")
      * @ORM\GeneratedValue(strategy="AUTO")
      */
     private $id;

     /**
      * @ORM\Column(type="string", length=255)
      */
     private $email;

     /**
      * @ORM\ManyToOne(targetEntity="Applicant", inversedBy="emails")
      */
     private $applicant;

     public function getEmailField()
     {
         return 'email';
     }

     public function getId()
     {
         return $this->id;
     }

     public function getEmail()
     {
         return $this->email;
     }

     public function getEmailOwner()
     {
         return $this->applicant;
     }
 }

An Email Owner

The entity that is the owner of the email address has to implement the Oro\Bundle\EmailBundle\Entity\EmailOwnerInterface:

getClass()

The fully qualified class name of the entity.

getEmailFields()

A list of properties of the entity that represent valid email addresses. You can specify more than one property here.

getId()

A unique identifier to identify a particular owner entity.

getFirstName()

The first name of the email address owner. It will be used to build proper recipient names when sending emails.

getLastName()

The last name of the email address owner. It will be used to build proper recipient names when sending emails.

For Applicant entity, the implementation should be similar to the following:

src/Acme/Bundle/DemoBundle/Entity/Applicant.php
 namespace Acme\Bundle\DemoBundle\Entity;

 use Doctrine\ORM\Mapping as ORM;
 use Oro\Bundle\EmailBundle\Entity\EmailOwnerInterface;

 /**
  * @ORM\Entity()
  */
 class Applicant implements EmailOwnerInterface
 {
     /**
      * @ORM\Id
      * @ORM\Column(type="integer", name="id")
      * @ORM\GeneratedValue(strategy="AUTO")
      */
     private $id;

     /**
      * @ORM\OneToMany(targetEntity="ApplicantEmail", mappedBy="applicant", orphanRemoval=true, cascade={"persist"})
      */
     private $emails;

     /**
      * @ORM\Column(type="string", length=255)
      */
     private $firstName;

     /**
      * @ORM\Column(type="string", length=255)
      */
     private $lastName;

     public function getClass()
     {
         return 'Acme\Bundle\DemoBundle\Entity\Applicant';
     }

     public function getEmailFields()
     {
         return ['email'];
     }

     public function getId()
     {
         return $this->id;
     }

     public function getEmails()
     {
         return $this->emails;
     }

     public function getFirstName()
     {
         return $this->firstName;
     }

     public function getLastName()
     {
         return $this->lastName;
     }
 }

Implement EmailOwnerProviderInterface

In order to make the application able to find the owner of a certain email address, you have to create a provider that implements the Oro\Bundle\EmailBundle\Entity\Provider\EmailOwnerProviderInterface. This interface contains the following methods:

getEmailOwnerClass()

Gets the class of an email address owner entity (the class implementing the EmailOwnerInterface which is the Applicant class in the example above).

findEmailOwner()

Finds an entity object that is an owner of an email address or null if no such owner exists. The returned object must be an instance of the class specified by the getEmailOwnerClass() method.

getOrganizations()

Gets the list of organization IDs where an email address is used.

getEmails()

Gets the list of email addresses for an organization.

The provider class should then look like this:

src/Acme/Bundle/DemoBundle/Entity/Provider/EmailOwnerProvider.php
 namespace Acme\Bundle\DemoBundle\Entity\Provider;

 use Acme\Bundle\DemoBundle\Entity\Applicant;
 use Acme\Bundle\DemoBundle\Entity\ApplicantEmail;
 use Doctrine\ORM\EntityManager;
 use Oro\Bundle\BatchBundle\ORM\Query\BufferedQueryResultIterator;
 use Oro\Bundle\EmailBundle\Entity\Provider\EmailOwnerProviderInterface;

 class EmailOwnerProvider implements EmailOwnerProviderInterface
 {
     public function getEmailOwnerClass()
     {
         return Applicant::class;
     }

     public function findEmailOwner(EntityManager $em, $email)
     {
         /** @var ApplicantEmail|null $emailEntity */
         $emailEntity = $em->getRepository(ApplicantEmail::class)->findOneBy(['email' => $email]);
         if (null === $emailEntity) {
             return null;
         }

         return $emailEntity->getEmailOwner();
     }

      public function getOrganizations(EntityManager $em, $email)
      {
          $rows = $em->createQueryBuilder()
              ->from(ApplicantEmail::class, 'e')
              ->select('IDENTITY(a.organization) AS id')
              ->join('e.owner', 'a')
              ->where('e.email = :email')
              ->setParameter('email', $email)
              ->getQuery()
              ->getArrayResult();

          $result = [];
          foreach ($rows as $row) {
              $result[] = (int)$row['id'];
          }

          return $result;
      }

       public function getEmails(EntityManager $em, $organizationId)
       {
           $qb = $em->createQueryBuilder()
               ->from(ApplicantEmail::class, 'e')
               ->select('e.email')
               ->join('e.owner', 'a')
               ->where('a.organization = :organizationId')
               ->setParameter('organizationId', $organizationId)
               ->orderBy('e.id');
           $iterator = new BufferedQueryResultIterator($qb);
           foreach ($iterator as $row) {
               yield $row['email'];
           }
       }
 }

You then need to create a service for the new EmailOwnerProvider class and tag it with the oro_email.owner.provider tag to make the application aware of the new email provider:

src/Acme/Bundle/DemoBundle/Resources/config/services.yml
 services:
     acme_demo.provider.email_owner_provider:
         class: Acme\Bundle\DemoBundle\Entity\Provider\EmailOwnerProvider
         tags:
             - { name: oro_email.owner.provider, order: 3 }

Refresh the Database Schema

Finally, you have to update the database schema and clear the application cache:

# update the database schema
php bin/console doctrine:schema:update --force

# warm up the application cache
php bin/console cache:warmup

Business Tip

Do you want to implement smart manufacturing in your company? Learn how manufacturing digital transformation can help your company get ahead.