-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmail.php
43 lines (40 loc) · 2.27 KB
/
mail.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
35
36
37
38
39
40
41
42
43
<?php
include 'conn.php';
require "C:\wamp64\www\Soiree\PHPMailer\PHPMailerAutoload.php ";
$to_email = $_GET['Email'];
$date =
$mail = new PHPMailer;
$mail->isSMTP();
$mail ->Host="smtp.gmail.com";
$mail->SMTPAuth = true;
$mail->Username = '[email protected]';
$mail->Password = 'yummchoco4@@';
$mail->SMTPSecure = 'tls';
$mail->Port = 587;
echo" $to_email";
//Recipients
$mail->setFrom('[email protected]');
$mail->addAddress($to_email);
$mail->addReplyTo('[email protected]' );
//Content
$mail->isHTML(true);
$mail->Subject = 'Soiree Invitation';
$mail->Body = '<div class="w3-container w3-content w3-padding-64" style="max-width:800px" style="font-family:verdana," >
<p> Dear Sir/Maam, </p>
<p> I am pleased to infrom you that you are cordially invited to the Soiree.<br><br>
This event will be organized at <b> THDC-IHET Campus,Tehri</b> and will be held on Date at
<b> 5<sup>th</sup>-June-2021 at 8:00pm.</b> A lunch has arranged in between the event to make it more enjoyable.
<br><br><br><br> Plese confirm your availibilty on or before Date:30-May-2021 by contacting us
on <b>9690030963</b> or by emailing us at <b>[email protected]</b>
<br><br><br> We look forward to your presence on the event Soiree.
<br><br> Thanks and Regards, <br> Shubham Tiwari </p>
</div> ';
$mail->AltBody = '';
if($mail->send()){
echo"sucess";
}
else {
echo"not sucess";
}
header("location:confirm.php");
?>