{% extends 'base_admin.html.twig' %} {% block title %}Investor e-mails{% endblock %} {% block body %}
Pub | Recipient | Recipient email | Investment | Attachment | Subject | Created At | Send At | Cc | # |
---|---|---|---|---|---|---|---|---|---|
{% if mail.pub is not null %} {{ mail.pub.name }} {% endif %} | {% for user in users %} {% if mail.recipient==user.email %} {{ user.fullName }} {% set id=user.id %} {% endif %} {% endfor %} | {{ mail.recipient }} | {% if shareholder is defined and shareholder is not null %} {{ shareholder.getInvestmentAmountForPub(mail.pub) |number_format }} {% endif %} | {% if mail.attachment is not null %} Download {% endif %} | {{ mail.subject }} | {{ mail.createdAt ? mail.createdAt|date('d-M-Y') : '' }} | {{ mail.sendAt ? mail.sendAt|date('d-M-Y') : 'Pending' }} | {{ mail.cc }} | Show Edit Delete |