mails
This commit is contained in:
parent
26d7fe1950
commit
46b7753dd5
|
@ -12,5 +12,9 @@ $lang=array(
|
|||
'MAKE_DUEL' => 'Provoquer un duel',
|
||||
'FIGHT' => 'Baston!',
|
||||
'DEV-YOUR-OWN-BOT' => 'Developpez votre bot et envoyez le dans cette arène.',
|
||||
'DOC_SPECS_LINKS' =>'Voici les spécifications techniques'
|
||||
'DOC_SPECS_LINKS' =>'Voici les spécifications techniques',
|
||||
'E_MAIL_ADD_BOT_INTRO' => 'Un grand merci pour la participation. Juste un click sur le lien suivant pour valider l\ajout du bot',
|
||||
'E_MAIL_ADD_BOT_INTRO_HTML' => '<p>Un grand merci pour la participation.</p><p>Juste un click sur le lien suivant pour valider l\ajout du bot</p>',
|
||||
'E_MAIL_ADD_BOT_SIGNATURE' => 'Gnieark',
|
||||
'E_MAIL_ADD_BOT_SIGNATURE_HTML' => '<p><i>Gnieark.</i></p>',
|
||||
);
|
27
src/act.php
27
src/act.php
|
@ -38,7 +38,7 @@ switch($_POST['act']){
|
|||
$alerts.="L'email n'est pas valide\n";
|
||||
}
|
||||
|
||||
//BotDescription=> a voir
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -65,8 +65,33 @@ switch($_POST['act']){
|
|||
'".$secret."'"
|
||||
);
|
||||
|
||||
require_once (__DIR__."/config.php");
|
||||
require_once (__DIR__."/class.phpmailer.php");
|
||||
|
||||
|
||||
|
||||
$mail = new PHPMailer;
|
||||
$mail->isSMTP();
|
||||
$mail->SMTPDebug = 2;
|
||||
$mail->Debugoutput = 'html';
|
||||
$mail->Host = $smtpParams['host'];
|
||||
$mail->Port = $smtpParams['port'];
|
||||
$mail->SMTPSecure = $smtpParams['secure'];
|
||||
$mail->SMTPAuth = true;
|
||||
$mail->Username = $smtpParams['username'];
|
||||
$mail->Password = $smtpParams['pass'];
|
||||
$mail->setFrom($smtpParams['username'], 'First Last');
|
||||
$mail->Subject = 'BotsArena';
|
||||
$mail->msgHTML=$lang['E_MAIL_ADD_BOT_INTRO_HTML'].'<p><a href="'.BASEURL.'validateBot/'.$secret.'">'.BASEURL.'validateBot/'.$secret.'</a></p>'.$lang['E_MAIL_ADD_BOT_SIGNATURE_HTML'];
|
||||
$mail->AltBody = $lang['E_MAIL_ADD_BOT_INTRO']."\n".BASEURL.'validateBot/'.$secret."\n".$lang['E_MAIL_ADD_BOT_SIGNATURE'];
|
||||
if (!$mail->send()) {
|
||||
echo "Mailer Error: " . $mail->ErrorInfo;
|
||||
} else {
|
||||
echo "Message sent!";
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
<?php
|
||||
define("BASEURL", "http://botsarena.tinad.fr/");
|
||||
$mysqlParams=array(
|
||||
'host' => 'localhost',
|
||||
'user' => '',
|
||||
|
|
Loading…
Reference in New Issue
Block a user