Skip to content

Commit

Permalink
Merge branch 'release/3.4.2' into v3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
AntoineAugusti committed Apr 6, 2015
2 parents bd8be6b + f8091fc commit 0a32b34
Show file tree
Hide file tree
Showing 8 changed files with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,6 @@ public function fire()
$this->newslettersManager->deleteForUsers($allUsers);

// Send an email to each user to notice them
new MailSwitcher('smtp');
$nonActiveUsers->each(function($user)
{
// Log this info
Expand Down
4 changes: 2 additions & 2 deletions ressources/views/emails/default.blade.php
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
@include('layouts.email.header')
@include('emails.layout.html.header')
@yield('content')
@include('layouts.email.footer')
@include('emails.layout.html.footer')
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html lang="en-US">
<head>
<meta charset="utf-8">
@include('layouts.email.style')
@include('emails.layout.html.style')
</head>
<body>
<div id="background">
Expand Down
Empty file.
Empty file.
3 changes: 3 additions & 0 deletions ressources/views/emails/text.blade.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
@include('emails.layout.text.header')
@yield('content')
@include('emails.layout.text.footer')

0 comments on commit 0a32b34

Please sign in to comment.