@component('mail::message')
# Introduction
Hi! {{$user}},
Your account has been {{$status}}
@php
if($status=="Rejected")
{
echo "
Reject Reason is : ".$rejectReason.", Kindly complete all the details and contact to our
support team
";
}else{
echo "
Please use previous mail which we have sent you on your mail to login in DIOSM FINTECH PRIVATE LIMITED,
Your Registration fees will be deducted automatically, For more information please check our privacy policy or you can
contact to our support.
";
}
@endphp
@if($status!="Rejected")
@component('mail::button', ['url' => URL::to("/login")])
Login Now
@endcomponent
@endif
Thanks,
{{ config('app.name') }}
@endcomponent