<?php
	//smtp settings
	$mail->isSMTP();
	$mail->Host = "smtp.gmail.com";
	$mail->SMTPAuth = true;
	$mail->Username = "teamgesse2020@gmail.com";
	//Enter your password and replace you gmail above with mine
	$mail->Password = "tanujjain140498";
	$mail->Port = 465;
	$mail->SMTPSecure = "ssl";
?>