@extends('emails.layouts.email')
@section('title', 'Welcome to Our Company')
@section('content')
Dear {{ $lead->first_name }},
Thank you for your interest in {{ config('app.name') }}. We're excited to help you explore solutions that
perfectly match your needs{{ $lead->industry ? ' in the ' . $lead->industry . ' industry' : '' }}.
Your Dedicated Support Team
@if ($employee)
@endif
What Happens Next?
- Personal consultation to understand your specific requirements
@if ($lead->needs_financing)
- Detailed discussion about financing options available to you
@endif
@if ($lead->needs_clearing_delivery)
- Custom clearing and delivery solutions tailored to your needs
@endif
- Customized solutions within your budget
range{{ $lead->budget_range_max ? ' of up to ' . number_format($lead->budget_range_max) : '' }}
- Regular updates through your preferred contact method: {{ $lead->preferred_contact_method }}
@if ($lead->purchase_timeline)
Your Timeline
We understand you're looking to make a decision within {{ $lead->purchase_timeline }}. We'll
ensure our support aligns perfectly with your schedule.
@endif
{{--
Access Your Portal
--}}
@if ($lead->communication_preferences)
As per your preferences, we'll communicate with you
{{ strtolower($lead->communication_preferences) }}.
@endif
@endsection