Jump to content

pb Modification modèle email html


Recommended Posts

Bonjour,

 

J'ai un petit soucis avec un modèle d'email que j'ai voulu modifié.

Comme je ne maitrise pas le langage html j'ai peur en le remodifiant de faire encore plus de dégâts...

 

j'ai simplement voulu enlever une phrase qui ne correspondait pas à l'activité de mon entreprise mais au final le texte s'est décalé à droite et 2 symboles arrivent devant "votre commande".

 

Que dois-je faire dans ma base html pour enlever ces symboles et redécaler mon texte vers la gauche?

 

Merci d'avance de votre aide.

 

Bonne journée

 

voici le texte en html:

 

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/1999/REC-html401-19991224/strict.dtd">

 

<html>

 

<head>

 

<meta http-equiv="Content-Type" content="text/html; charset=utf-8">

 

<title>Message de {shop_name}</title>

 

</head>

 

<body>

 

<table style="font-family: Verdana,sans-serif; font-size: 11px; color: #374953; width: 550px;">

 

<tbody>

 

<tr>

 

<td align="left"><a title="{shop_name}" href="{shop_url}"><img style="border: none;" src="{shop_logo}" alt="{shop_name}" /></a></td>

 

</tr>

 

<tr>

 

<td> </td>

 

</tr>

 

<tr>

 

<td align="left">Bonjour <strong style="color: {color};">{firstname} {lastname}</strong>,</td>

 

</tr>

 

<tr>

 

<td> </td>

 

</tr>

 

<tr>

 

<td style="background-color: {color}; color: #fff; font-size: 12px; font-weight: bold; padding: 0.5em 1em;" align="left">Historique de votre commande ayant pour référence {order_name}</td>

 

</tr>

 

<tr>

 

<td> </td>

 

<td align="left">/><strong>Votre commande {order_name} a

été expédiée.</td>

 

 

</tr>

 

<tr>

 

<td> </td>

 

<td align="left">Vous pouvez accéder au suivi de votre commande et télécharger votre facture dans <a style="color: {color}; font-weight: bold; text-decoration: none;" href="{history_url}">"Historique des commandes"</a> de la rubrique <a style="color: {color}; font-weight: bold; text-decoration: none;" href="{my_account_url}">"Mon compte"</a> sur notre site.</td>

 

</tr>

 

<tr>

 

<td align="left">Si vous avez un compte invité, vous pouvez suivre votre commande dans la section <a style="color: {color}; font-weight: bold; text-decoration: none;" href="{guest_tracking_url}">"Suivi invité"</a> de notre site.</td>

 

</tr>

 

<tr>

 

<td> </td>

 

</tr>

 

<tr>

 

<td style="font-size: 10px; border-top: 1px solid #D9DADE;" align="center"><a style="color: {color}; font-weight: bold; text-decoration: none;" href="{shop_url}">{shop_name}</a> réalisé avec <a style="text-decoration: none; color: #374953;" href="http://www.prestashop.com/">PrestaShop™</a></td>

 

</tr>

 

</tbody>

 

</table>

 

</body>

 

</html>

 

 

et le rendu du mail:

Bonjour CELINE MORIN, Historique de votre commande ayant pour référence OCHRJGHPP />Votre commande OCHRJGHPP a été expédiée. Vous pouvez accéder au suivi de votre commande et télécharger votre facture dans "Historique des commandes" de la rubrique "Mon compte" sur notre site. Si vous avez un compte invité, vous pouvez suivre votre commande dans la section "Suivi invité" de notre site.

FRANCE BARRETTES réalisé avec PrestaShop™

Link to comment
Share on other sites

Bonjour,

 

 

Je pense qu'en modifiant:

<tr>
<td> </td>
<td align="left">/><strong>Votre commande {order_name} a
été expédiée.</td>
</tr>

 

Par:

<tr>
<td align="left"><strong>Votre commande {order_name} a
été expédiée.</td>
</tr>

 

tout devrait rentrer dans l'ordre ;)

  • Like 1
Link to comment
Share on other sites

Bonsoir julien64 et merci pour la réponse.

 

J'ai fais les modifications. Sauf erreur de ma part (ce qui est probable...) Ma phrase s'est bien alignée à gauche mais le reste du paragraphe est toujours décalé.

Les lignes sont sur une longueur très courte, les phrases sautent à la lignes après 8/10 mots.

Pourrais-je vous resolliciter pour remedier à ces derniers petits soucis?

 

Merci par avance de votre aide,

 

Passez une excellente soirée

 

Céline

 

Voici le rendu du mail après modifications:

Bonjour
CELINE MORIN
,

Historique de votre commande ayant pour référence UTJYAPSAA

Votre commande UTJYAPSAA a été

expédiée.

Vous pouvez accéder au suivi de votre commande

et télécharger votre facture dans "historique des

commandes" de la rubrique

sur notre site.

Si vous avez un compte invité, vous pouvez

suivre votre commande dans la section

de notre site.

réalisé avec

 

et voici le texte html:

 

 

 

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "

http://www.w3.org/TR/1999/REC-html401-19991224/strict.dtd">

 

 

<html>

 

 

<head>

 

 

<meta http-equiv="Content-Type" content="text/html; charset=utf-8">

 

 

<title>Message de {shop_name}</title>

 

 

</head>

 

 

<body>

 

 

<table style="font-family: Verdana,sans-serif; font-size: 11px; color: #374953; width: 550px;">

 

 

<tbody>

 

 

<tr>

 

 

<td align="left"><a title="{shop_name}" href="{shop_url}"><img style="border: none;" src="{shop_logo}" alt="{shop_name}" /></a></td>

 

 

</tr>

 

 

<tr>

 

 

<td> </td>

 

 

</tr>

 

 

<tr>

 

 

<td align="left">Bonjour <strong style="color: {color};">{firstname} {lastname}</strong>,</td>

 

 

</tr>

 

 

<tr>

 

 

<td> </td>

 

 

</tr>

 

 

<tr>

 

 

<td style="background-color: {color}; color: #fff; font-size: 12px; font-weight: bold; padding: 0.5em 1em;" align="left">Historique de votre commande ayant pour référence {order_name}</td>

 

 

</tr>

 

 

 

 

 

 

 

 

<tr>

 

 

 

 

 

<td align="left"><strong>Votre commande {order_name} a

 

 

été expédiée.</td>

 

 

 

 

 

 

 

</tr>

 

 

<tr>

 

 

<td> </td>

 

 

<td align="left">Vous pouvez accéder au suivi de votre commande et télécharger votre facture dans <a style="color: {color}; font-weight: bold; text-decoration: none;" href="{history_url}">"Historique des commandes"</a> de la rubrique <a style="color: {color}; font-weight: bold; text-decoration: none;" href="{my_account_url}">"Mon compte"</a> sur notre site.</td>

 

 

</tr>

 

 

<tr>

 

 

<td align="left">Si vous avez un compte invité, vous pouvez suivre votre commande dans la section <a style="color: {color}; font-weight: bold; text-decoration: none;" href="{guest_tracking_url}">"Suivi invité"</a> de notre site.</td>

 

 

</tr>

 

 

<tr>

 

 

<td> </td>

 

 

</tr>

 

 

<tr>

 

 

<td style="font-size: 10px; border-top: 1px solid #D9DADE;" align="center"><a style="color: {color}; font-weight: bold; text-decoration: none;" href="{shop_url}">{shop_name}</a> réalisé avec <a style="text-decoration: none; color: #374953;" href="

http://www.prestashop.com/">PrestaShop™</a></td>

 

 

</tr>

 

 

</tbody>

 

 

</table>

 

 

</body>

 

 

</html>

Edited by CELINE MORIN (see edit history)
Link to comment
Share on other sites

merci encore

 

Bonjour CELINE MORIN, Historique de votre commande ayant pour référence UTJYAPSAA Votre commande UTJYAPSAA a été expédiée. Vous pouvez accéder au suivi de votre commande et télécharger votre facture dans "Historique des commandes" de la rubrique "Mon compte" sur notre site. Si vous avez un compte invité, vous pouvez suivre votre commande dans la section "Suivi invité" de notre site. FRANCE BARRETTES réalisé avec PrestaShop™

Edited by CELINE MORIN (see edit history)
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...