@extends('header')
@section('head')
@parent
@stop
@section('content')
@parent
@include('accounts.nav', ['selected' => ACCOUNT_EMAIL_SETTINGS, 'advanced' => true])
{!! Former::open()->rules([
'bcc_email' => 'email',
])->addClass('warn-on-exit') !!}
{{ Former::populate($account) }}
{{ Former::populateField('pdf_email_attachment', intval($account->pdf_email_attachment)) }}
{{ Former::populateField('document_email_attachment', intval($account->document_email_attachment)) }}
{{ Former::populateField('enable_email_markup', intval($account->enable_email_markup)) }}
{!! trans('texts.email_settings') !!}
{!! Former::checkbox('pdf_email_attachment')
->text(trans('texts.enable'))
->value(1)
->help( ! Utils::isNinja() ? (env('PHANTOMJS_BIN_PATH') ? 'phantomjs_local' : trans('texts.phantomjs_help', [
'link_phantom' => link_to('https://phantomjscloud.com/', 'phantomjscloud.com', ['target' => '_blank']),
'link_docs' => link_to('https://www.invoiceninja.com/self-host/#phantomjs', 'PhantomJS', ['target' => '_blank'])
])) : false) !!}
{!! Former::checkbox('document_email_attachment')
->text(trans('texts.enable'))
->value(1) !!}
{!! Former::text('bcc_email')->help('bcc_email_help') !!}
{{-- Former::select('recurring_hour')->options($recurringHours) --}}
{!! trans('texts.email_design') !!}
{!! Former::select('email_design_id')
->appendIcon('question-sign')
->addGroupClass('email_design_id')
->addOption(trans('texts.plain'), EMAIL_DESIGN_PLAIN)
->addOption(trans('texts.light'), EMAIL_DESIGN_LIGHT)
->addOption(trans('texts.dark'), EMAIL_DESIGN_DARK)
->help(trans('texts.email_design_help')) !!}
@if (Utils::isNinja())
{!! Former::checkbox('enable_email_markup')
->text(trans('texts.enable') .
'
' . Icon::create('question-sign') . ' ')
->help(trans('texts.enable_email_markup_help'))
->value(1) !!}
@endif
@if (Auth::user()->hasFeature(FEATURE_CUSTOM_EMAILS))
{!! Button::success(trans('texts.save'))->large()->submit()->appendIcon(Icon::create('floppy-disk')) !!}
@endif
{{ trans('texts.plain') }}
{{ trans('texts.light') }}
{{ trans('texts.dark') }}
{!! Former::close() !!}
@stop