Subscribe to our Newsletter

Signup for our weekly newsletter to get the latest news, updates and amazing offers delivered directly in your inbox.

if you are not interested, un-subscribe our newsletter.


SMTPDebug = SMTP::DEBUG_SERVER; // for detailed debug output $mail->isSMTP(); $mail->Host = 'smtp.zoho.com'; $mail->SMTPAuth = true; $mail->SMTPSecure = PHPMailer::ENCRYPTION_STARTTLS; // Use TLS $mail->Port = 587; $mail->Username = 'contact@diabeticliniccare.com'; // YOUR gmail email $mail->Password = 'aAX99icTthad'; // YOUR gmail password // Sender and recipient settings $mail->setFrom('contact@diabeticliniccare.com', 'Dietnutris'); $mail->addAddress($email, $name, $message); $mail->addReplyTo('contact@diabeticliniccare.com', 'Dietnutris'); // to set the reply to // Setting the email content $mail->IsHTML(true); $mail->Subject = "Subscribe Replay [Success]"; $mail->Body = "

Thank you for Subscribe us.

This message confirms that you have subscribed from the Dietnutris.

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