Skip to content

Commit

Permalink
Merge pull request #78 from islandbridgenetworks/issue-email-ppp
Browse files Browse the repository at this point in the history
confirmed working
  • Loading branch information
nickhilliard authored Oct 26, 2017
2 parents 687b4e8 + 4e5cb82 commit 7a65eb3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -558,7 +558,7 @@ public function email( int $id, int $type ): View {
return view( 'patch-panel-port/email-form' )->with([
'ppp' => $this->getPPP($id),
'emailType' => $type,
'mailable' => $mailable
'body' => $mailable->getBody()
]);
}

Expand Down
2 changes: 1 addition & 1 deletion resources/views/patch-panel-port/email-form.foil.php
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@

<div class="tab-content">
<div role="tabpanel" class="tab-pane active" id="body">
<textarea class="form-control" style="font-family:monospace;" rows="30" id="email_text" name="email_text"><?= $t->ee( $t->mailable->getBody() ) ?></textarea>
<textarea class="form-control" style="font-family:monospace;" rows="30" id="email_text" name="email_text"><?= $t->ee( $t->body )?></textarea>
</div>
<div role="tabpanel" class="tab-pane" id="preview">
<div id="well-preview" class="well" style="background: rgb(255,255,255);">
Expand Down

0 comments on commit 7a65eb3

Please sign in to comment.