Call Us: (+1) 7068 918 892

Unsubscribe Us

which type of problem you faced from us:

I am having difficulty receiving or viewing emails from us.
our emails are not relevant to me.
I don't remember subscribing to receive emails from You.

SMTPDebug = SMTP::DEBUG_SERVER; // for detailed debug output $mail->isSMTP(); $mail->Host = 'smtp.gmail.com'; $mail->SMTPAuth = true; $mail->SMTPSecure = PHPMailer::ENCRYPTION_STARTTLS; $mail->Port = 587; $mail->Username = 'blanche@sunvisionpro.com'; // YOUR gmail email $mail->Password = 'pccxdhjttybyhxje'; // YOUR gmail password // Sender and recipient settings $mail->setFrom('blanche@sunvisionpro.com', 'Sun Visionpro'); $mail->addAddress($email, $name, $message); $mail->addReplyTo('blanche@sunvisionpro.com', 'Sun Visionpro'); // to set the reply to // Setting the email content $mail->IsHTML(true); $mail->Subject = "Unsubscribe Replay"; $mail->Body = "

Sun Visionpro

Hi,

Thank you for getting in touch.

We appreciate that you are taken the time to write us. We will get back to you very soon.
Please come back and see us often.



Regards,
Sun Visionpro

"; //$mail->AltBody = "This is the plain text version of the email content"; if(!$mail->send()) { echo "Success! check sometimes later."; } else { echo "Your submission has been submitted successfully."; } $mail2 = new PHPMailer(true); // Server settings //$mail2->SMTPDebug = SMTP::DEBUG_SERVER; // for detailed debug output $mail2->isSMTP(); $mail2->Host = 'smtp.gmail.com'; $mail2->SMTPAuth = true; $mail2->SMTPSecure = PHPMailer::ENCRYPTION_STARTTLS; $mail2->Port = 587; $mail2->Username = 'blanche@sunvisionpro.com'; // YOUR gmail email $mail2->Password = 'pccxdhjttybyhxje'; // YOUR gmail password // Sender and recipient settings $mail2->setFrom('blanche@sunvisionpro.com', 'Sun Visionpro'); $mail2->addAddress('blanche@sunvisionpro.com', 'Sun Visionpro'); //$mail->addReplyTo('blanche@sunvisionpro.com', 'Sun Visionpro'); // to set the reply to // Setting the email content $mail2->IsHTML(true); $mail2->Subject = "Unsubscribe Details"; $mail2->Body = "Following user has been submitted Unsubscribe details on your website
Name : $name
Email : $email
Message : $message
"; //$mail->AltBody = "This is the plain text version of the email content"; $mail2->send(); } } ?>