first commit
This commit is contained in:
11
resources/views/access/emails/email-template.blade.php
Normal file
11
resources/views/access/emails/email-template.blade.php
Normal file
@ -0,0 +1,11 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>@yield('email_subject')</title>
|
||||
</head>
|
||||
<body>
|
||||
<div>
|
||||
@yield('content')
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
26
resources/views/access/emails/enquiry-response.blade.php
Normal file
26
resources/views/access/emails/enquiry-response.blade.php
Normal file
@ -0,0 +1,26 @@
|
||||
@component('mail::message')
|
||||
|
||||
Dear {{$formData['name']}},
|
||||
|
||||
Thank you for submitting the online enquiry form. We appreciate your interest in our services. Our team has received your request, and we are excited to assist you.
|
||||
|
||||
You can expect to hear back from our team within the next working day. We are dedicated to providing excellent service and will do our best to address your enquiry thoroughly.
|
||||
|
||||
If you have any further questions or need immediate assistance, feel free to contact us at any time.
|
||||
|
||||
Just for your reference, here below are your submitted details.
|
||||
|
||||
|
||||
- **Name:** {{ $formData['name'] }}
|
||||
- **Email:** {{ $formData['email'] }}
|
||||
- **Phone:** {{ $formData['phone'] }}
|
||||
- **Preferred Destination:** {{ $formData['preferred_destination'] }}
|
||||
- **Mode of Counselling:** {{ $formData['mode_of_counselling'] }}
|
||||
- **Nearest Branch:** {{ $formData['nearest_branch'] }}
|
||||
- **Message:** {{ $formData['message'] }}
|
||||
|
||||
|
||||
Best regards,
|
||||
Access Education Webmaster
|
||||
|
||||
@endcomponent
|
22
resources/views/access/emails/enquiry-submitted.blade.php
Normal file
22
resources/views/access/emails/enquiry-submitted.blade.php
Normal file
@ -0,0 +1,22 @@
|
||||
@component('mail::message')
|
||||
# New Online Enquiry Form Submission
|
||||
|
||||
Congratulations on receiving a new online enquiry form submission!
|
||||
|
||||
Your expertise and dedication have attracted yet another prosperous user seeking guidance. We are excited to share the details of the form that has been submitted:
|
||||
|
||||
Thank you for making a difference in people's lives. Keep up the excellent work!
|
||||
|
||||
- **Name:** {{ $formData['name'] }}
|
||||
- **Email:** {{ $formData['email'] }}
|
||||
- **Phone:** {{ $formData['phone'] }}
|
||||
- **Preferred Destination:** {{ $formData['preferred_destination'] }}
|
||||
- **Mode of Counselling:** {{ $formData['mode_of_counselling'] }}
|
||||
- **Nearest Branch:** {{ $formData['nearest_branch'] }}
|
||||
- **Message:** {{ $formData['message'] }}
|
||||
|
||||
|
||||
Best regards,
|
||||
{{env("APP_NAME")}}
|
||||
|
||||
@endcomponent
|
@ -0,0 +1,20 @@
|
||||
@extends('emails.email-template')
|
||||
@section('content')
|
||||
<p>Dear {{ $formData['name'] }},</p>
|
||||
|
||||
<p><b>Congratulations on successfully registering with Access Education Network!</b></p>
|
||||
|
||||
<p>Welcome to a journey of possibilities and empowerment. Stay tuned for exclusive webinars, discounts, personalized
|
||||
guidance, networking opportunities, and exciting giveaways.</p>
|
||||
|
||||
<p>For any queries, reach us at +977 9801570070 or info@accessnepal.net. We look forward to supporting your educational journey with Access Education Network.</p>
|
||||
|
||||
<h3>Your details:</h3>
|
||||
<p>Name: {{ $formData['name'] }}</p>
|
||||
<p>Email: {{ $formData['email'] }}</p>
|
||||
<p>Phone: {{ $formData['mobile'] }}</p>
|
||||
|
||||
<p>Best regards,<br>Access Education Network </p>
|
||||
<p>+977 9801570070</p>
|
||||
<p>info@accessnepal.net</p>
|
||||
@endsection
|
@ -0,0 +1,20 @@
|
||||
@extends('emails.email-template')
|
||||
@section('content')
|
||||
<p>Dear {{ $formData['name'] }},</p>
|
||||
|
||||
<p><b>Congratulations on successfully registering with Access Education Network!</b></p>
|
||||
|
||||
<p>Welcome to a journey of possibilities and empowerment. Stay tuned for exclusive webinars, discounts, personalized
|
||||
guidance, networking opportunities, and exciting giveaways.</p>
|
||||
|
||||
<p>For any queries, reach us at +977 9801570070 or info@accessnepal.net. We look forward to supporting your educational journey with Access Education Network.</p>
|
||||
|
||||
<h3>Your details:</h3>
|
||||
<p>Name: {{ $formData['name'] }}</p>
|
||||
<p>Email: {{ $formData['email'] }}</p>
|
||||
<p>Phone: {{ $formData['mobile'] }}</p>
|
||||
|
||||
<p>Best regards,<br>Access Education Network </p>
|
||||
<p>+977 9801570070</p>
|
||||
<p>info@accessnepal.net</p>
|
||||
@endsection
|
Reference in New Issue
Block a user