• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

[Gesior] PHP Mailer

Seckan

Member
Joined
Jun 21, 2009
Messages
40
Reaction score
9
Here's the deal, I'm an owner of an OT which is currently under construction. I just installed Gesior ACC and I want to set up the PHP Mailer.
My server, is hosted on a VPS powered by an online gaming community and I don't have acces to the host of my server, neither of the online community.
So what do I have to ask to the owner of the gaming community to set up my PHP Mailer?

This is what appeared on the readme:

Code:
A Simple Example:

<?php
require("class.phpmailer.php");

$mail = new PHPMailer();

$mail->IsSMTP();                                      // set mailer to use SMTP
$mail->Host = "smtp1.example.com;smtp2.example.com";  // specify main and backup server
$mail->SMTPAuth = true;     // turn on SMTP authentication
$mail->Username = "jswan";  // SMTP username
$mail->Password = "secret"; // SMTP password

$mail->From = "[email protected]";
$mail->FromName = "Mailer";
$mail->AddAddress("[email protected]", "Josh Adams");
$mail->AddAddress("[email protected]");                  // name is optional
$mail->AddReplyTo("[email protected]", "Information");

$mail->WordWrap = 50;                                 // set word wrap to 50 characters
$mail->AddAttachment("/var/tmp/file.tar.gz");         // add attachments
$mail->AddAttachment("/tmp/image.jpg", "new.jpg");    // 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. <p>";
   echo "Mailer Error: " . $mail->ErrorInfo;
   exit;
}

echo "Message has been sent";
?>

I've got an e-mail account, it is [email protected]. Not sure if that is important.
Also, do I have to install or copy a file into the FTP? So I ask the owner to do it?

Thanks in advice.
 
Easiest way to do this:

-Create a Google account.
-Host = smtp.gmail.com
-SMTPAuth = true
-Username = '[email protected]'
-Password = 'yourpassword'

If the option is presented set ssl connection to true, and set the port to either 465 or 587. The rest of the information is pretty straightforward.
 
Back
Top