sms and update admin
changes
This commit is contained in:
@@ -0,0 +1,233 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Keep Climbing the Leaderboard!</title>
|
||||
|
||||
<style>
|
||||
body{
|
||||
margin:0;
|
||||
padding:0;
|
||||
background:#f5f8fc;
|
||||
font-family:Arial, Helvetica, sans-serif;
|
||||
color:#333333;
|
||||
}
|
||||
|
||||
.wrapper{
|
||||
width:100%;
|
||||
padding:30px 15px;
|
||||
}
|
||||
|
||||
.container{
|
||||
max-width:600px;
|
||||
margin:0 auto;
|
||||
background:#ffffff;
|
||||
border-radius:10px;
|
||||
overflow:hidden;
|
||||
box-shadow:0 3px 15px rgba(0,0,0,0.08);
|
||||
}
|
||||
|
||||
.header{
|
||||
background:#115AAA;
|
||||
padding:35px 20px;
|
||||
text-align:center;
|
||||
}
|
||||
|
||||
.header h1{
|
||||
margin:0;
|
||||
color:#ffffff;
|
||||
font-size:28px;
|
||||
}
|
||||
|
||||
.content{
|
||||
padding:35px 30px;
|
||||
}
|
||||
|
||||
.greeting{
|
||||
font-size:18px;
|
||||
margin-bottom:20px;
|
||||
}
|
||||
|
||||
.score-box{
|
||||
background:#f0f8ff;
|
||||
border-left:5px solid #00AEEF;
|
||||
padding:20px;
|
||||
text-align:center;
|
||||
border-radius:8px;
|
||||
margin:25px 0;
|
||||
}
|
||||
|
||||
.score-label{
|
||||
font-size:15px;
|
||||
color:#666;
|
||||
}
|
||||
|
||||
.score{
|
||||
font-size:42px;
|
||||
font-weight:bold;
|
||||
color:#115AAA;
|
||||
margin-top:10px;
|
||||
}
|
||||
|
||||
.highlight{
|
||||
color:#115AAA;
|
||||
font-weight:bold;
|
||||
}
|
||||
|
||||
.cta{
|
||||
text-align:center;
|
||||
margin:35px 0;
|
||||
}
|
||||
|
||||
.btn{
|
||||
display:inline-block;
|
||||
padding:14px 32px;
|
||||
background:#00AEEF;
|
||||
color:#ffffff !important;
|
||||
text-decoration:none;
|
||||
border-radius:5px;
|
||||
font-weight:bold;
|
||||
}
|
||||
|
||||
.services{
|
||||
background:#f7fbff;
|
||||
padding:20px;
|
||||
border-radius:8px;
|
||||
margin-top:25px;
|
||||
}
|
||||
|
||||
.services h3{
|
||||
margin-top:0;
|
||||
color:#115AAA;
|
||||
}
|
||||
|
||||
.services ul{
|
||||
padding-left:20px;
|
||||
margin-bottom:0;
|
||||
}
|
||||
|
||||
.footer{
|
||||
background:#f4f7fa;
|
||||
padding:25px;
|
||||
text-align:center;
|
||||
font-size:13px;
|
||||
color:#777;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<div class="wrapper">
|
||||
|
||||
<div class="container">
|
||||
|
||||
<div class="header">
|
||||
<h1>Score & Win Challenge</h1>
|
||||
</div>
|
||||
<div style="background:#ffffff;padding:25px;text-align:center;">
|
||||
<img src="https://rosettaeducation.com/storage/rosetta/files/1/rosetta-logo.png"
|
||||
alt="Rosetta Education International"
|
||||
style="max-width:200px;width:100%;height:auto;">
|
||||
</div>
|
||||
|
||||
<div style="height:6px;background:#00AEEF;"></div>
|
||||
|
||||
<div class="content">
|
||||
|
||||
<div class="greeting">
|
||||
Hi {{ $registration->name }},
|
||||
</div>
|
||||
|
||||
<p>
|
||||
Thank you for participating in today's <span class="highlight">Score & Win Challenge</span> at Rosetta Education Consultancy!
|
||||
</p>
|
||||
|
||||
<div class="score-box">
|
||||
<div class="score-label">Your Current Score</div>
|
||||
<div class="score">{{ $registration->total_score}} Points</div>
|
||||
</div>
|
||||
|
||||
<p>
|
||||
Great job! Every point counts, and the competition is just getting started.
|
||||
</p>
|
||||
|
||||
<p>
|
||||
Remember, you can return <strong>tomorrow and play again</strong> to improve your score and climb higher on the leaderboard.
|
||||
</p>
|
||||
|
||||
<p>
|
||||
The participant with the highest score at the end of the campaign will be crowned the <strong>Ultimate Winner</strong> and receive exciting prizes and rewards.
|
||||
</p>
|
||||
|
||||
<p>
|
||||
The more days you play, the better your chances of winning.
|
||||
</p>
|
||||
|
||||
|
||||
<div class="services">
|
||||
<h3>While You're Here, Explore Your Study Abroad Opportunities</h3>
|
||||
|
||||
<ul>
|
||||
<li>Free education counseling & career guidance</li>
|
||||
<li>Study destination support – UK, Australia, Canada & USA</li>
|
||||
<li>University selection tailored to your profile</li>
|
||||
<li>SOP (Statement of Purpose) preparation</li>
|
||||
<li>Scholarship assistance</li>
|
||||
<li>Admission processing & documentation support
|
||||
</li>
|
||||
<li>Student visa guidance</li>
|
||||
<li>IELTS & PTE preparation classes</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<p style="margin-top:25px;">
|
||||
We look forward to seeing you again tomorrow. Keep playing, keep scoring, and keep moving closer to your dream destination.
|
||||
</p>
|
||||
|
||||
</div>
|
||||
<div style="
|
||||
margin-top:40px;
|
||||
padding:25px;
|
||||
border-top:1px solid #e5e5e5;
|
||||
">
|
||||
|
||||
<p style="margin:0 0 15px 0;">
|
||||
Best Regards,
|
||||
</p>
|
||||
|
||||
<img src="https://rosettaeducation.com/storage/rosetta/files/1/rosetta-logo.png"
|
||||
alt="Rosetta Education International"
|
||||
style="max-width:200px;height:auto;margin-bottom:15px;">
|
||||
|
||||
<p style="margin:0;font-weight:bold;color:#115AAA;">
|
||||
Rosetta Education International
|
||||
</p>
|
||||
|
||||
<p style="margin:8px 0;color:#666;font-size:14px;">
|
||||
Your Trusted Study Abroad Partner
|
||||
</p>
|
||||
|
||||
<p style="margin:5px 0;color:#666;font-size:14px;">
|
||||
📧 info@rosettaeducation.com
|
||||
</p>
|
||||
|
||||
<p style="margin:5px 0;color:#666;font-size:14px;">
|
||||
📞 +977-1-4560413
|
||||
</p>
|
||||
|
||||
<p style="margin:5px 0;color:#666;font-size:14px;">
|
||||
🌐 https://rosettaeducation.com/
|
||||
</p>
|
||||
|
||||
<div class="footer">
|
||||
© 2026 Rosetta Education Consultancy<br>
|
||||
Helping Students Reach Global Opportunities
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,211 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Welcome to Score & Win</title>
|
||||
|
||||
<style>
|
||||
body{
|
||||
margin:0;
|
||||
padding:0;
|
||||
background:#f5f8fc;
|
||||
font-family:Arial, Helvetica, sans-serif;
|
||||
color:#333333;
|
||||
}
|
||||
|
||||
.wrapper{
|
||||
width:100%;
|
||||
padding:30px 15px;
|
||||
}
|
||||
|
||||
.container{
|
||||
max-width:600px;
|
||||
margin:0 auto;
|
||||
background:#ffffff;
|
||||
border-radius:10px;
|
||||
overflow:hidden;
|
||||
box-shadow:0 3px 15px rgba(0,0,0,0.08);
|
||||
}
|
||||
|
||||
.header{
|
||||
background:#115AAA;
|
||||
padding:35px 20px;
|
||||
text-align:center;
|
||||
}
|
||||
|
||||
.header h1{
|
||||
margin:0;
|
||||
color:#ffffff;
|
||||
font-size:28px;
|
||||
}
|
||||
|
||||
.content{
|
||||
padding:35px 30px;
|
||||
}
|
||||
|
||||
.welcome-box{
|
||||
background:#f0f8ff;
|
||||
border-left:5px solid #00AEEF;
|
||||
padding:20px;
|
||||
border-radius:8px;
|
||||
margin:25px 0;
|
||||
}
|
||||
|
||||
.cta{
|
||||
text-align:center;
|
||||
margin:35px 0;
|
||||
}
|
||||
|
||||
.btn{
|
||||
display:inline-block;
|
||||
padding:14px 32px;
|
||||
background:#00AEEF;
|
||||
color:#ffffff !important;
|
||||
text-decoration:none;
|
||||
border-radius:5px;
|
||||
font-weight:bold;
|
||||
}
|
||||
|
||||
.services{
|
||||
background:#f7fbff;
|
||||
padding:20px;
|
||||
border-radius:8px;
|
||||
margin-top:25px;
|
||||
}
|
||||
|
||||
.services h3{
|
||||
margin-top:0;
|
||||
color:#115AAA;
|
||||
}
|
||||
|
||||
.footer{
|
||||
background:#f4f7fa;
|
||||
padding:25px;
|
||||
text-align:center;
|
||||
font-size:13px;
|
||||
color:#777;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<div class="wrapper">
|
||||
|
||||
<div class="container">
|
||||
|
||||
<div class="header">
|
||||
<h1>Welcome to Score & Win</h1>
|
||||
</div>
|
||||
<div style="background:#ffffff;padding:25px;text-align:center;">
|
||||
<img src="https://rosettaeducation.com/storage/rosetta/files/1/rosetta-logo.png"
|
||||
alt="Rosetta Education International"
|
||||
style="max-width:200px;width:100%;height:auto;">
|
||||
</div>
|
||||
<div class="content">
|
||||
|
||||
<h2 style="color:#115AAA;">Hi {{$registration->name}},</h2>
|
||||
|
||||
<p>
|
||||
Welcome to the exciting <strong>Score & Win Challenge</strong> by Rosetta Education Consultancy.
|
||||
</p>
|
||||
|
||||
<div class="welcome-box">
|
||||
<strong>Your registration has been successfully completed.</strong>
|
||||
<br><br>
|
||||
You're now officially part of the competition and eligible to compete for exciting prizes.
|
||||
</div>
|
||||
|
||||
<p>
|
||||
Here's how it works:
|
||||
</p>
|
||||
|
||||
<ul>
|
||||
<li>Free education counseling & career guidance</li>
|
||||
<li>Study destination support – UK, Australia, Canada & USA</li>
|
||||
<li>University selection tailored to your profile</li>
|
||||
<li>SOP (Statement of Purpose) preparation</li>
|
||||
<li>Scholarship assistance</li>
|
||||
<li>Admission processing & documentation support
|
||||
</li>
|
||||
<li>Student visa guidance</li>
|
||||
<li>IELTS & PTE preparation classes</li>
|
||||
</ul>
|
||||
|
||||
<p>
|
||||
Consistent participation increases your chances of securing a top position and winning amazing rewards.
|
||||
</p>
|
||||
|
||||
|
||||
|
||||
<div class="services">
|
||||
<h3>Why Students Choose Rosetta Education Consultancy</h3>
|
||||
|
||||
<ul>
|
||||
<li>Expert Study Abroad Counseling</li>
|
||||
<li>University Application Assistance</li>
|
||||
<li>Scholarship & Financial Guidance</li>
|
||||
<li>Visa Processing Support</li>
|
||||
<li>Career-Oriented Course Selection</li>
|
||||
<li>End-to-End Student Assistance</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<p style="margin-top:25px;">
|
||||
While you're competing for prizes, don't forget that our team is here to help you achieve your international education goals.
|
||||
</p>
|
||||
|
||||
<p>
|
||||
Best of luck, and let the challenge begin!
|
||||
</p>
|
||||
|
||||
</div>
|
||||
<div style="
|
||||
margin-top:40px;
|
||||
padding:25px;
|
||||
border-top:1px solid #e5e5e5;
|
||||
">
|
||||
|
||||
<p style="margin:0 0 15px 0;">
|
||||
Best Regards,
|
||||
</p>
|
||||
|
||||
<img src="https://rosettaeducation.com/storage/rosetta/files/1/rosetta-logo.png"
|
||||
alt="Rosetta Education International"
|
||||
style="max-width:200px;height:auto;margin-bottom:15px;">
|
||||
|
||||
<p style="margin:0;font-weight:bold;color:#115AAA;">
|
||||
Rosetta Education International
|
||||
</p>
|
||||
|
||||
<p style="margin:8px 0;color:#666;font-size:14px;">
|
||||
Your Trusted Study Abroad Partner
|
||||
</p>
|
||||
|
||||
<p style="margin:5px 0;color:#666;font-size:14px;">
|
||||
📧 info@rosettaeducation.com
|
||||
</p>
|
||||
|
||||
<p style="margin:5px 0;color:#666;font-size:14px;">
|
||||
📞 +977-1-4560413
|
||||
</p>
|
||||
|
||||
<p style="margin:5px 0;color:#666;font-size:14px;">
|
||||
🌐 https://rosettaeducation.com/
|
||||
</p>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
<div class="footer">
|
||||
© 2026 Rosetta Education Consultancy<br>
|
||||
Your Trusted Study Abroad Partner
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user