@extends('layouts.core.backend') @section('title', trans('postal::messages.title')) @section('page_header')

Verify Email Address

@endsection @section('content')
{{ csrf_field() }}
@if (isset($results) && $results['success'] == true)

Valid

Email provided email address "{{ $email }}" is valid. Status: DELIVERABLE. Below are the MX servers found:

{!! $mxs !!}

@elseif (isset($results))

Invalid

The email given address "{{ $email }}" is invalid or does not exist in the remote server

@endif

Enter your email address to verify. Acelle will MX records for the email domain and then connects to the domain's SMTP server to try figuring out if the address really exists.

@endsection