<%= notice %>
| Sender | Recipient | Subject | Date | Time | Size | Status |
|---|---|---|---|---|---|---|
| <%= message.mail_from %> | <%= message.rcpt_to %> | <%= message.subject %> | <%= Time.at(message.timestamp).strftime('%d-%m-%Y') %> | <%= Time.at(message.timestamp).strftime('%H:%M:%S') %> | <%= message.size.to_f >= 1048576 ? "#{(message.size.to_d/1048576).round(2)} MB" : "#{(message.size.to_d/1024).round(2)} KB"%> | <%= message.status == "Sent"? "Delivered": message.status %> |