first commit
This commit is contained in:
11
resources/views/presidential/emails/email-template.blade.php
Normal file
11
resources/views/presidential/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>
|
@ -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,
|
||||
Presidential International Academic Foundation
|
||||
|
||||
@endcomponent
|
@ -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,17 @@
|
||||
@extends('emails.email-template')
|
||||
@section('content')
|
||||
|
||||
<strong>Subject: Welcome to Presidential International Academic Foundation - Your Study Abroad Journey Begins!</strong>
|
||||
<p>Dear {{ $formData['name'] }},</p>
|
||||
|
||||
|
||||
<h1>Congratulations on taking the first step towards your study abroad adventure! We are thrilled to welcome you to Presidential International Academic Foundation.. </h1>
|
||||
<p>Your registration form has been received, and we are excited to embark on this journey with you. Our team of dedicated counsellors will now review your information and reach out to you shortly to discuss the next steps in your study abroad aspirations.</p>
|
||||
<p>At Presidential International Academic Foundation, we are committed to providing personalized guidance and support to help you make informed decisions about your academic future. Whether you have questions about specific programs, the application process, or need assistance in choosing the right destination, our experts are here to assist you.</p>
|
||||
<p>We look forward to being a part of your exciting study abroad journey.</p>
|
||||
|
||||
|
||||
<p>Best regards,<br>
|
||||
Presidential International Academic Foundation</p>
|
||||
|
||||
@endsection
|
@ -0,0 +1,17 @@
|
||||
@extends('emails.email-template')
|
||||
@section('content')
|
||||
|
||||
<strong>Subject: Welcome to Presidential International Academic Foundation - Your Study Abroad Journey Begins!</strong>
|
||||
<p>Dear {{ $formData['name'] }},</p>
|
||||
|
||||
|
||||
<h1>Congratulations on taking the first step towards your study abroad adventure! We are thrilled to welcome you to Presidential International Academic Foundation.. </h1>
|
||||
<p>Your registration form has been received, and we are excited to embark on this journey with you. Our team of dedicated counsellors will now review your information and reach out to you shortly to discuss the next steps in your study abroad aspirations.</p>
|
||||
<p>At Presidential International Academic Foundation, we are committed to providing personalized guidance and support to help you make informed decisions about your academic future. Whether you have questions about specific programs, the application process, or need assistance in choosing the right destination, our experts are here to assist you.</p>
|
||||
<p>We look forward to being a part of your exciting study abroad journey.</p>
|
||||
|
||||
|
||||
<p>Best regards,<br>
|
||||
Presidential International Academic Foundation </p>
|
||||
|
||||
@endsection
|
Reference in New Issue
Block a user