forked from prameshbajra/BVC-Student-Portal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathemail.php
34 lines (26 loc) · 866 Bytes
/
email.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<!-- Developed by Saurav Bajracharya and Pramesh Bajracharya -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Student Details Information.</title>
<link rel="stylesheet" href="style_detailadmin.css">
<link rel="stylesheet" href="animate.css">
<link rel="shortcut icon" href="bvc.png" type="image/x-icon" />
</head>
<body>
<header id="topHead" class="animated fadeInDown">
<a href="index.php"><h2 style = "margin-left : 30px">Student Information Sheet - BVCEC</h2></a>
<a href="index.php"><img id="home" src="download.png" style="width : 65px ; height : 65px;"></a>
</header>
<div id="bodyMain">
<?php
include "functions.php";
emailSend();
?>
<h3 class="send"><center>
Email Sent Successfully.
</center></h3>
</div>
</body>
</html>