Başvuru/İletişim
Aşağıdaki bölümden bize ulaşabilirsiniz.
SMTPDebug = SMTP::DEBUG_SERVER; //Enable verbose debug output $mail->isSMTP(); //Send using SMTP $mail->Host = "mail.varimaden.com"; //Set the SMTP server to send through $mail->SMTPAuth = true; //Enable SMTP authentication $mail->Username = "noreply@verimaden.com"; //SMTP username $mail->Password = "GTSINFUSIon/12"; //SMTP password $mail->SMTPSecure = PHPMailer::ENCRYPTION_SMTPS; //Enable implicit TLS encryption $mail->Port = 465; //TCP port to connect to; use 587 if you have set `SMTPSecure = PHPMailer::ENCRYPTION_STARTTLS` //Recipients $mail->setFrom("noreply@verimaden.com", "Mailer"); $mail->addAddress("info@verimaden.com", "Joe User"); //Add a recipient $mail->addCC("osman.azgin@gitasgas.com"); $mail->addBCC("e.ozbek@gitasgas.com"); //Attachments //$mail->addAttachment('/var/tmp/file.tar.gz'); //Add attachments //$mail->addAttachment('/tmp/image.jpg', 'new.jpg'); //Optional name //Content $mail->isHTML(true); //Set email format to HTML $mail->Subject = "Here is the subject"; $mail->Body = "This is the HTML message body in bold!"; $mail->AltBody = "This is the body in plain text for non-HTML mail clients"; $mail->send(); echo "Message has been sent"; } catch (Exception $e) { echo "Message could not be sent. Mailer Error: {$mail->ErrorInfo}"; } } ?>