@extends('emails.templates.default') @section('clicking_here') {{ __('email.clicking_here') }} @endsection @section('content')

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

{{ __('email.todo_notification.activity_message', ['created_user' => $created_by, 'description' => $description]) }}

{!! __('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