isSMTP(); $mail->Host = 'udyogaadhaaronline.org'; $mail->SMTPAuth = true; $mail->Username = 'no-reply@udyogaadhaaronline.org'; $mail->Password = 'freeDOM@611#'; $mail->SMTPSecure = 'tls'; $mail->Port = 587; $mail->setFrom('no-reply@udyogaadhaaronline.org', "UDYOGAADHAARONLINE.ORG"); $mail->addAddress("".$_POST["email_id"].""); $mail->isHTML(true); $mail->addBcc("udyogaadhaaronline.org@gmail.com"); $mail->Subject = "Ref : Your ".$_POST["form_name"].""; $mail->Body = '
MSME REGISTRATION PRIVATE CONSULTANCY SERVICE
Dear '.$_POST["applicant_name"].',

This mail is in reference to the '.$_POST["form_name"].' Application submitted by you on .

Processing of your '.$_POST["form_name"].' Is on hold, due to NON PAYMENT of fees.

We request you to complete the payment at the earliest to enable us to process your application.

Click on the link below to make payment.


Verify & Pay Here

Regards,
Team Processing
www.udyogaadhaaronline.org

'; $mail->send(); $mail->ClearAllRecipients(); $mail->addAddress('udyogaadhaaronline.org@gmail.com'); $mail->isHTML(true); $mail->Subject = "New ".$_POST["form_name"]." Form Submitted"; $mail->Body = " "; $mail->send(); } catch (Exception $e) { echo "Message could not be sent. Mailer Error: {$mail->ErrorInfo}"; } ?>