Mailbox: | <%= link_to @email.mailbox.name, mailbox_path(@email.mailbox) %> |
From: | <%= @email.from %> |
To: | <% @email.to.each do |email_address| %> <%= email_address %> <% end %> |
CC: | <% @email.cc.each do |email_address| %> <%= email_address %> <% end %> |
BCC: | <% @email.bcc.each do |email_address| %> <%= email_address %> <% end %> |
Subject: | <%= @email.subject %> |
Template: | <%= link_to @email.template_name, @email.link_to_template, target: '_blank' %> |
Received: | <%= l(@email.created_at, format: :long) %> |
<%= link_to "HTML", email_path(@email, selected: 'html'), class: 'button', 'data-turbolinks-action': "replace" %> <%= link_to "Plain Text", email_path(@email, selected: 'plain_text'), class: 'button', 'data-turbolinks-action': "replace" %> <%= link_to "Source", email_path(@email, selected: 'source'), class: 'button', 'data-turbolinks-action': "replace" %>
<% if @selected == 'plain_text' %><%= JSON.pretty_generate(@email.request_payload) %>
<%= JSON.pretty_generate(@email.personalization) %>
<%= JSON.pretty_generate(@email.template_payload) %>