@extends('emails.layouts.app') @section('content')
Hi {!! $mailData['first_name'] !!},
@if(@$mailData['change_email_action'] == "remove")

Your email address was removed from your account. If this was a mistake, please fill out the Contact Us form and we will be happy to assist you.

@elseif(@$mailData['change_email_action'] == "add" || @$mailData['change_email_action'] == "update")

Your email address has been changed. To access your account, please use the following credentials to sign in. If this was a mistake, please fill out the Contact Us form and we will be happy to assist you.

Email : {!! $mailData['email'] !!}

Password : {!! $mailData['new_password'] ?? "Your current password" !!}

Click HERE to sign in to your account.

@endif

Thank You,
{!!Config::get('app.name')!!}

@endsection