setFrom(SITE_NAME." "); // Set the Return header $mail->setReturnPath("ereturn@".$msiteName); // Set the Priority - normal, high $mail->setPriority("normal"); $Subject = 'Introducing Free Messaging feature'; $html = ' Nikah.com - Newsletters

You are receiving this mail as a registered member of Nikah.com
Please add eletters@Nikah.com to your address book to ensure delivery of e-mails, profile responses into your inbox

'.$sub_date.'

Assalaamualaikum

Dear '.$uName.' ('.$ProfileId.'),

Message Free

Opening the Doors of Free Messaging

It gives us pleasure to inform you that, from now you will be able to exchange unlimited messages with suitable matches, without giving contact details or hints to contact. This unlimited free messaging feature will help you to share details about you, your expectations in your partner / family, likes, dislikes, religious interest etc. This mode of contact increases the chances to connect and get to know each other furthermore.

You can upgrade your profile to paid membership once you feel that you found a compatible life partner and thereafter wish to be in touch.

So what are you waiting for?

Login now and start sending personalised messages.
Make your life partner search easier with nikah.com (Be there, to be found)

Login Now

With Regards
Nikah.com Team

Should you need any clarification or information, please feel free to contact us on support@nikah.com

'; //echo $html;exit; // Set the Subject $mail->setSubject($Subject); // Create the HTML email $mail->setHTML($html, ""); // Create Message Text/plain $Message = ""; $mail->setText($Message); //$toAdd = "varusai24@gmail.com"; $toAdd = $uDet["pro_email"]; //$toAdd = "coolboys521@gmail.com"; //exit; return $result = $mail->send(array($toAdd)); } // get user details who has been invited by others function getUserProfileDetail($ProfileId) { global $inputs,$dbase; $sql = "select dpro_name,pro_email,pro_resid,pro_nation,pro_type from profile p join det_profile d on p.pro_profileid = d.dpro_profileid where p.pro_profileid = '$ProfileId'"; $exeQuery = $dbase->db_sql_query($sql); $proDetArray = array(); if (count($exeQuery) > 0) { if (is_array($exeQuery[0])) { $proDetArray = $exeQuery; } else { $proDetArray[0] = $exeQuery; } } return $proDetArray; } ?>