@extends('layouts.app') @section('title', $page_title) @section('styles') @endsection @push('scripts') @endpush @php $attributes = json_decode($trigger->attributes); @endphp @section('content')
@csrf @method('PUT')
@php $sending_server_ids = json_decode($attributes->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($attributes->from_detail == 'custom') { $form_detail_custom = json_decode($attributes->from_detail_custom); $from_email_domain = explode('@', $form_detail_custom->from_email)[1]; } @endphp
@
@endsection