Mr .'.$name.' Made on in your www.skvinfotech.com Please find the details below of Mr .'.$name.' enquired
Enquiry From '.$name.'
skvinfotech
| Name |
'.$name.' |
| E-mail |
'.$from.' |
| Phone Number |
'.$phone.' |
| Message |
'.$messages.' |
Note:This email is automatically genereated from the www.skvinfotech.com if you feel anything wrong kindly contact the support team,Ninositsolution:+044-43852285
Thanks And Regards
skvinfotech
+91 90943 45145 /+91 95145 22223
';
$mail = new PHPMailer;
$mail->Host = 'smtp.skvinfotech.com'; // Specify main and backup SMTP servers
$mail->SMTPAuth = true; // Enable SMTP authentication
$mail->Username = 'info@skvinfotech.com'; // SMTP username
$mail->Password = 'info@123'; // SMTP password
$mail->SMTPSecure = 'tls'; // Enable TLS encryption, `ssl` also accepted
$mail->Port = 587; // TCP port to connect to
$mail->setFrom('info@skvinfotech.com', 'skvinfotech'); // Add a recipient
$mail->addAddress('vencky1990@gmail.com','skvinfotech');
//$mail->addAddress('sam@ninositsolution.com','skvinfotech');
$mail->addReplyTo($from,$return);
$mail->addCC('ecphasisinfotech2008@gmail.com');
$mail->addCC('support@ninositsolution.com');
$mail->addCC('nizamdeen.t@ninositsolution.com');
$mail->addBCC('matthew@ninositsolution.com','skvinfotech');
$mail->isHTML(true); // Set email format to HTML
$mail->Subject = $subject;
$mail->Body = $content;
//$mail->AltBody = 'This is the body in plain text for non-HTML mail clients';
if(!$mail->send()) {
return false;
} else {
return true;
}
}
function sendmailcheck($message)
{
$badWords = array("anal","anus","arse","ass","ass fuck","ass hole","assfucker","asshole","assshole","bastard","bitch","black cock","bloody hell","boong","cock","cockfucker","cocksuck","cocksucker","coon","coonnass","crap","cunt","cyberfuck","damn","darn","dick","dirty","douche","erect","erection","erotic","escort","fag","faggot","fuck","Fuck off","fuck you","fuckass","fuckhole","god damn","gook","hard core","hardcore","homoerotic","hore","lesbian","lesbians","mother fucker","motherfuck","motherfucker","negro","nigger","orgasim","orgasm","penis","penisfucker","piss","piss off","porn","porno","pornography","pussy","retard","sadist","sex","sexy","shit","slut","son of a bitch","suck","tits","viagra","whore","xxx","Fast Money","The Busy Budgeter", "вÐâ", "How to Make","crypto","cryptocurrency","Krypto","bitcoin","bitcoins","https:","http:","www","https","http","href");
$string = $message;
$matches = array();
$matchFound = preg_match_all(
"/\b(" . implode($badWords,"|") . ")\b/i",
$string,
$matches
);
if ($matchFound) {
return false;
}else{
return true;
}
}
?>