_item.php 831 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <?php
  2. /* @var $model array */
  3. use yii\helpers\Html;
  4. use yii\widgets\DetailView;
  5. echo DetailView::widget([
  6. 'model' => $model,
  7. 'attributes' => [
  8. 'headers',
  9. 'from',
  10. 'to',
  11. 'charset',
  12. [
  13. 'attribute' => 'time',
  14. 'format' => 'datetime',
  15. ],
  16. 'subject',
  17. [
  18. 'attribute' => 'body',
  19. 'label' => 'Text body',
  20. ],
  21. [
  22. 'attribute' => 'isSuccessful',
  23. 'label' => 'Successfully sent',
  24. 'value' => $model['isSuccessful'] ? 'Yes' : 'No'
  25. ],
  26. 'reply',
  27. 'bcc',
  28. 'cc',
  29. [
  30. 'attribute' => 'file',
  31. 'format' => 'html',
  32. 'value' => Html::a('Download eml', ['download-mail', 'file' => $model['file']]),
  33. ],
  34. ],
  35. ]);