ok
Direktori : /proc/thread-self/root/proc/self/root/home2/selectio/www/y1jobportal.in/email/ |
Current File : //proc/thread-self/root/proc/self/root/home2/selectio/www/y1jobportal.in/email/ganesan-mail.php |
<?php require 'PHPMailer/class.phpmailer.php'; $mail = new PHPMailer(true); try{ $mail->IsSMTP(); $mail->Mailer = "smtp"; $mail->SMTPDebug = 0; $mail->SMTPAuth = TRUE; $mail->SMTPSecure = "ssl"; $mail->Port = 587; $mail->Host = "smtp.gmail.com"; /*$mail->Username = "ganesanraj111@gmail.com"; $mail->Password = "ittbfrjnccxkdkti";*/ $mail->Username = "info@y1jobportal.in"; $mail->Password = "zahe rybb ireq rgii"; $mail->IsSendmail(); $mail->From = "firstmatrix01@gmail.com"; $mail->FromName = "Firstmatrix Solutions..."; $mail->AddAddress('info@y1jobportal.in'); $mail->AddAddress('ganesan.firstmatrix@gmail.com'); $mail->Subject = 'Team Confirmation Mail Testing'; $mail->WordWrap = 800; $content = "<p>Message Details:-<b >Explore a faster, easier, and better job search Looking for your next career move? You've come to the right place! Y1 JobPortal is your one-stop destination for finding exciting job opportunities that match your skills, experience, and career goals. Whether you're a seasoned professional or just starting out, we've got something for everyone.<b><br>"; $mail->MsgHTML($content); $mail->IsHTML(true); if(!$mail->Send()) { echo "Mail Not Sent"; }else{ echo 'Mail Sended SuccessFully!!!';} }catch(Exception $e){ echo $e; } ?>