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

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

{{ __('email.activity_completion.message', ['completed_user_name' => $completed_user_name, 'activity_name' => $activity_name]) }}

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

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