Merge branch 'develop' of gitlab.antadis.fr:dev-antadis/bebeboutik into develop

This commit is contained in:
Thibault GUILLAUME 2016-03-02 12:16:16 +01:00
commit 2fa8a22864
3 changed files with 8 additions and 8 deletions

View File

@ -2,12 +2,12 @@
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Message de votre boutique</title>
<title>Message Presse</title>
</head>
<body>
<table style="font-family: tahoma,arial,sans-serif; font-size: 12px; color:#000000; width: 550px;">
<tr>
<td align="left" style="background: #514c8c; color:#ffffff; font-size: 12px; font-weight:bold; padding: 0.5em 1em;">Vous avez reçu un message de la part d'un client depuis votre boutique</td>
<td align="left" style="background: #514c8c; color:#ffffff; font-size: 12px; font-weight:bold; padding: 0.5em 1em;">Vous avez reçu un message Presse</td>
</tr>
<tr><td>&nbsp;</td></tr>
<tr>

View File

@ -2,12 +2,12 @@
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Message de votre boutique</title>
<title>Message Fournisseur</title>
</head>
<body>
<table style="font-family: tahoma,arial,sans-serif; font-size: 12px; color:#000000; width: 550px;">
<tr>
<td align="left" style="background: #514c8c; color:#ffffff; font-size: 12px; font-weight:bold; padding: 0.5em 1em;">Vous avez reçu un message de la part d'un client depuis votre boutique</td>
<td align="left" style="background: #514c8c; color:#ffffff; font-size: 12px; font-weight:bold; padding: 0.5em 1em;">Vous avez reçu un message de la part d'un fournisseur</td>
</tr>
<tr><td>&nbsp;</td></tr>
<tr>

View File

@ -10,7 +10,6 @@ class Process
public function __construct()
{
$this->mail_dir = dirname(__FILE__);
var_dump($this->mail_dir);
$_to = Db::getInstance()->ExecuteS('SELECT `email`, `type` FROM `'._DB_PREFIX_.'contactform_email`');
foreach ($_to as $k => $email) {
@ -48,16 +47,17 @@ class Process
'content' => pSQL($this->data['content']),
'type' => Contactform::TYPE_PROVIDER
], 'INSERT');
if (!$query) {
$errors[] = Tools::displayError('Une erreur s\'est produite. Votre message n\'a pas été envoyé');
} else {
$sended = Mail::Send(
intval($cookie->id_lang),
(int)$cookie->id_lang,
'provider',
'Contact fournisseur',
$this->data,
$this->to_provider
$this->to_provider
);
if (!$sended) {
$errors[] = Tools::displayError('Une erreur s\'est produite. Votre message n\'a pas été envoyé');