@extends('layouts.app') @section('title', $page_title) @section('styles') @endsection @push('scripts') @endpush @section('content')
@csrf @method('PUT')
@php $list_ids = explode(',', $schedule->list_ids); @endphp @include('includes.dropdown_lists', ['popup' => 0, 'multiple' => 1, 'required' => 1])
@php $sending_server_ids = explode(',', $schedule->sending_server_ids); @endphp @include('includes.dropdown_sending_server', ['popup' => 0, 'multiple' => 1, 'required' => 1])

from_detail == 'sending_server' ? 'checked' : '' }}> {{__('app.as_defined_for_sending_server')}}   from_detail == 'list' ? 'checked' : '' }}> {{__('app.as_defined_for_list')}}   from_detail == 'custom' ? 'checked' : '' }}> {{__('app.custom')}}
@php if($schedule->from_detail == 'custom') { $form_detail_custom = json_decode($schedule->from_detail_custom); $from_email_domain = explode('@', $form_detail_custom->from_email)[1]; } @endphp
@

{{ __('app.review') }}

{{ __('app.lists') }}:

{{ __('app.delivery_servers') }}:

@endsection