Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- require 'lib/mail_system/PHPMailerAutoload.php';
- $mail = new PHPMailer;
- $mail->SMTPDebug = 2; // Enable verbose debug output
- $mail->isSMTP(); // Set mailer to use SMTP
- $mail->Host = 'n3plcpnl0078.prod.ams3.secureserver.net'; // Specify main and backup SMTP servers
- $mail->SMTPAuth = true; // Enable SMTP authentication
- $mail->Username = '[email protected]'; // SMTP username
- $mail->Password = 'mypassword'; // SMTP password
- $mail->SMTPSecure = 'ssl'; // Enable TLS encryption, `ssl` also accepted
- $mail->Port = 465; // TCP port to connect to
- $mail->setFrom('noreply@gamersside', 'Hesap İşlemleri');
- $mail->addAddress('ahmet.celikezer96@gmail'); // Add a recipient // Name is optional
- // Optional name
- $mail->isHTML(true); // Set email format to HTML
- $mail->Subject = 'Here is the subject';
- $mail->Body = 'This is the HTML message body <b>in bold!</b>';
- $mail->AltBody = 'This is the body in plain text for non-HTML mail clients';
- if(!$mail->send()) {
- echo 'Message could not be sent.';
- echo 'Mailer Error: ' . $mail->ErrorInfo;
- } else {
- echo 'Message has been sent';
- }
- ?>e here
Advertisement
Add Comment
Please, Sign In to add comment