@extends('emails.templates.default') @section('clicking_here') {{ __('email.clicking_here') }} @endsection @section('content') @if($due_date) @endif @if($reopen_comment) @endif

{{ __('email.greeting', ['name' => trim($name)!='' ? $name : 'there']) }}

{{ __('email.todo_notification.activity_reopen_message', ['activity_name' => $activity_name,'created_user' => $created_user]) }}

{{ __('email.todo_notification.due_date', ['due_date' => $due_date ]) }}

{{ __('email.todo_notification.reopen_reason',['reopen_comment' => $reopen_comment]) }}

{!! __('email.todo_notification.link_label', ['link_text'=> trim($__env->yieldContent('clicking_here'))]) !!}

@include('emails.templates.signoff', ['thank_you' => __('email.thank_you'), 'wish' => __('email.wish')])
@endsection