recevoir Mail

Vous avez une idée pour améliorer ou modifier PureBasic ? N'hésitez pas à la proposer.
Avatar de l’utilisateur
Le psychopathe
Messages : 764
Inscription : jeu. 03/mars/2005 19:23

recevoir Mail

Message par Le psychopathe »

Bonjour
Je viens de jeter un coup d'œil aux fonctions mail et je vois qu'il en existe pas pour recevoir ^^ Donc voilà juste un ajout pour recevoir des emails.
Merci beaucoup
Avatar de l’utilisateur
Progi1984
Messages : 2659
Inscription : mar. 14/déc./2004 13:56
Localisation : France > Rennes
Contact :

Message par Progi1984 »

En attendant, tu as PurePOP3 de Gnozal.

Lien : http://www.purebasic.fr/english/viewtopic.php?t=17032
Avatar de l’utilisateur
Le psychopathe
Messages : 764
Inscription : jeu. 03/mars/2005 19:23

Message par Le psychopathe »

J'ai testé, le seul soucis est que je perd la mise en forme des messages xD
Anonyme

Message par Anonyme »

Le psychopathe a écrit :J'ai testé, le seul soucis est que je perd la mise en forme des messages xD
colle le mail dans un webgadget.
Avatar de l’utilisateur
Le psychopathe
Messages : 764
Inscription : jeu. 03/mars/2005 19:23

Message par Le psychopathe »

C'est pareil, il perd la mise en forme, le style tout ;)
Il y a pas les balises html. Rien
cha0s
Messages : 681
Inscription : sam. 05/mars/2005 16:09

Message par cha0s »

sinon avec quelques informations sur le protocole POP3 et les sockets tu peut tout coder toi même ^^'
gnozal
Messages : 832
Inscription : mar. 07/déc./2004 17:35
Localisation : France
Contact :

Message par gnozal »

Le psychopathe a écrit :J'ai testé, le seul soucis est que je perd la mise en forme des messages xD
Tu as essayé PurePOP3_GetMessageTextInMemory(#True) ?
Avatar de l’utilisateur
Le psychopathe
Messages : 764
Inscription : jeu. 03/mars/2005 19:23

Message par Le psychopathe »

gnozal a écrit :
Le psychopathe a écrit :J'ai testé, le seul soucis est que je perd la mise en forme des messages xD
Tu as essayé PurePOP3_GetMessageTextInMemory(#True) ?
Je reprend ton code exemple sauf que je stocke dans une chaine$ pour l'envoyer dans un webgadget.

Code : Tout sélectionner

;
; Get last message (and attachments)
;
Server.s = "my.server.de"
Port.l = 110
User.s = "gnozal"
Pwd.s = "mypass"
;
If PurePOP3_OpenPOP3Connection(Server, Port, User, Pwd) = #PurePOP3_Ok
  Debug "Connected"
  ; PurePOP3_Trace(#TRUE)
  Messages = PurePOP3_CountMessages()
  Debug "You have " + Str(Messages) + " messages(s)"
  If Messages
    Debug "Message(s) total size : " + Str(PurePOP3_GetMessagesTotalSize()) + " bytes"
    Debug "Message " + Str(Messages) + " size : " + Str(PurePOP3_GetMessageSize(Messages)) + " bytes"
    Debug "Retrieve message " + Str(Messages)
    If PurePOP3_RetrieveMessage(Messages) > 0
      Debug "--------------"
      Debug "Message info : " + PurePOP3_GetMessageInfo()
      *Message = PurePOP3_GetMessageTextInMemory()
      If *Message
        Debug "Message text :"
        Debug ""
        chaine$ = PeekS(*Message)
        Debug   chaine$      
      Debug ""
        FreeMemory(*Message)
      EndIf
      Attachements.s = PurePOP3_ListAttachementsForMessage()
      If Attachements
        Debug "----------------"
        Debug "Attachement(s) : " + Attachements
        If PurePOP3_SaveAttachementsToFile("")
          Debug "Attachement(s) saved to current directory"
        Else
          Debug "Could not save attachement(s)"
        EndIf
      Else
        Debug "--------------"
        Debug "No attachments"
      EndIf
    EndIf
  EndIf
  PurePOP3_ClosePOP3Connection()
Else
  Debug PurePOP3_GetLastServerMessage()
EndIf

ensuite je met la vairable chaine$ dans un webgadget avec le setgadgetitemtext mais là j'ai pas de mise en forme, rien pas de lien, pas de balise.
gnozal
Messages : 832
Inscription : mar. 07/déc./2004 17:35
Localisation : France
Contact :

Message par gnozal »

Le psychopathe a écrit :
gnozal a écrit :
Le psychopathe a écrit :J'ai testé, le seul soucis est que je perd la mise en forme des messages xD
Tu as essayé PurePOP3_GetMessageTextInMemory(#True) ?
Je reprend ton code exemple sauf que je stocke dans une chaine$ pour l'envoyer dans un webgadget.
Comme indiqué dans l'aide, PurePOP3_GetMessageTextInMemory() renvoie du texte non formaté par défaut (encodage "text/plain") ; il faut préciser #True en argument pour obtenir du texte formaté (encodage "text/html").
La fonction PurePOP3_IsMessageHTML() permet de vérifier si le message contient du texte formaté.
Avatar de l’utilisateur
Le psychopathe
Messages : 764
Inscription : jeu. 03/mars/2005 19:23

Message par Le psychopathe »

gnozal a écrit :
Le psychopathe a écrit :
gnozal a écrit :Tu as essayé PurePOP3_GetMessageTextInMemory(#True) ?
Je reprend ton code exemple sauf que je stocke dans une chaine$ pour l'envoyer dans un webgadget.
Comme indiqué dans l'aide, PurePOP3_GetMessageTextInMemory() renvoie du texte non formaté par défaut (encodage "text/plain") ; il faut préciser #True en argument pour obtenir du texte formaté (encodage "text/html").
La fonction PurePOP3_IsMessageHTML() permet de vérifier si le message contient du texte formaté.
Oui donc avec le TRUE c'est pire xD On voit rien ou presque. Voilà le code source de la pgae web renvoyé par PurePOP3 avec TRUE :

Code : Tout sélectionner

<!-- saved from url=3D(0022)http://internet.e-mail -->=0D
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.=
w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">=0D
<html>=0D
<head>=0D
<meta http-equiv=3D"Content-Type" content=3D"text/html; charset=3Diso-8859-=
1" />=0D
<title>Newsletter Jeuxvideo.com</title>=0D
<style type=3D"text/css">=0D
<!--=0D
body {font-family: Arial, Helvetica, sans-serif;}=0D
a:link {text-decoration: none; color: #0066CC;}=0D
a:visited {text-decoration: none; color: #0066CC;}=0D
a:hover {text-decoration: none; color: #FF6600;}=0D
img {vertical-align: middle;}=0D
-->=0D
</style>=0D
</head>=0D
<body bgcolor=3D"#CCCCCC">=0D
<table width=3D"665" border=3D"0" align=3D"center" cellpadding=3D"0" cellsp=
acing=3D"10" bgcolor=3D"#FFFFFF">=0D
<tr>=0D
<td  background=3D"http://image.jeuxvideo.com/imgnl/header_fond.gif">=0D
<table width=3D"645" border=3D"0" cellspacing=3D"0" cellpadding=3D"0">=0D
<tr>=0D
<td width=3D"225"><img  src=3D"http://image.jeuxvideo.com/imgnl/header_logo=
..gif" width=3D"225" height=3D"50" /></td>=0D
<td width=3D"260"><strong><font color=3D"#006699" size=3D"2" face=3D"Verdan=
a, Arial, Helvetica, sans-serif">Lettre d'information n&deg;527 </font></st=
rong></td>=0D
<td width=3D"160" align=3D"right"> <strong><font color=3D"#006699" size=3D"=
1" face=3D"Verdana, Arial, Helvetica, sans-serif">20 mars 2009&nbsp;</font>=
</strong> </td>=0D
</tr>=0D
</table>=0D
</td>=0D
</tr>=0D
<tr>=0D
<td>=0D
<table width=3D"645" border=3D"0" cellspacing=3D"0" cellpadding=3D"0">=0D
<tr>=0D
<td width=3D"505" class=3D"infos">=0D
<!-- Edito -->=0D
<table width=3D"505" border=3D"0" cellpadding=3D"0" cellspacing=3D"0">=0D
<tr>=0D
<td         background=3D"http://image.jeuxvideo.com/imgnl/fond_t1.gif"><im=
g  src=3D"http://image.jeuxvideo.com/imgnl/titre_alaune.gif" width=3D"141" =
height=3D"10" hspace=3D"5" vspace=3D"5" /></td>=0D
</tr>=0D
<tr>=0D
<td bgcolor=3D"#F2F5F7">=0D
<table width=3D"505" border=3D"0" cellpadding=3D"0" cellspacing=3D"10">=0D
<tr>=0D
<td><font size=3D"2"><img  src=3D"http://image.jeuxvideo.com/imgnl/puce2.gi=
f" /> <strong>=0D
<!-- Titre de la newsletter -->=0D
<a href=3D"http://www.jeuxvideo.com/articles/0001/00010521-madworld-test.ht=
m?cmpid=3DC03-200309utxt">MadWorld  <img  style=3D"width: 40px; height: 15p=
x;" alt=3D"25" src=3D"http://image.jeuxvideo.com/pics/wii.gif" border=3D"0"=
 /></a>=0D
</strong></font>=0D
<table border=3D"0" cellspacing=3D"0" cellpadding=3D"1"><tr>=0D
<td width=3D"210" align=3D"center" valign=3D"middle" bgcolor=3D"#000000"><f=
ont size=3D"2"><a href=3D"http://www.jeuxvideo.com/articles/0001/00010521-m=
adworld-test.htm?cmpid=3DC03-200309uimg"><img  src=3D"http://image.jeuxvide=
o.com/newsletter/2009-03-20-madworld.jpg" width=3D"210" vspace=3D"0" border=
=3D"0" /></a></font></td><td>&nbsp;</td><td valign=3D"top" align=3D"justify=
"> <font size=3D"2">=0D
<!-- Texte de la newsletter -->=0D
Faites couler des flots d'h=E9moglobine sur votre Wii.</font><br /><img  sr=
c=3D"http://image.jeuxvideo.com/imgnl/puce.gif" /> <font size=3D"2"><strong=
><a href=3D"http://www.jeuxvideo.com/articles/0001/00010521-madworld-test.h=
tm?cmpid=3DC03-200309utxt">Lire la suite...</a></strong></font></td>=0D
</tr></table>=0D
</td></tr></table>=0D
</td></tr></table>=0D
&nbsp;<table width=3D"505" border=3D"0" cellpadding=3D"0" cellspacing=3D"0"=
>=0D
<tr>=0D
<td         background=3D"http://image.jeuxvideo.com/imgnl/fond_t1.gif">=0D
<img  src=3D"http://image.jeuxvideo.com/imgnl/titre_news.gif" width=3D"64" =
height=3D"10" hspace=3D"5" vspace=3D"5" /></td>=0D
</tr>=0D
<tr>=0D
<td bgcolor=3D"#F2F5F7">=0D
<table width=3D"505" border=3D"0" cellpadding=3D"0" cellspacing=3D"10"><tr>=
=0D
<td><font size=3D"2"><img  src=3D"http://image.jeuxvideo.com/imgnl/puce2.gi=
f" /> <strong>=0D
<a href=3D"http://www.jeuxvideo.com/videos_editeurs/0002/00021233/the_chron=
icles_of_riddick_assault_on_dark_athena_f1q0.htm?cmpid=3DC03-200309ntxt">Th=
e Chronicles of Riddick : Assault on Dark Athena <img  style=3D"width: 40px=
; height: 15px;" alt=3D"27" src=3D"http://image.jeuxvideo.com/pics/p3.gif" =
border=3D"0" /> <img  style=3D"width: 40px; height: 15px;" alt=3D"26" src=
=3D"http://image.jeuxvideo.com/pics/x3.gif" border=3D"0" /> <img  style=3D"=
width: 40px; height: 15px;" alt=3D"2" src=3D"http://image.jeuxvideo.com/pic=
s/pc.gif" border=3D"0" /></a></strong><br />Vin Diesel n'aime pas que l'on =
d=E9range les morts.</font></td>=0D
</tr>=0D
<tr>=0D
<td><font size=3D"2"><img  src=3D"http://image.jeuxvideo.com/imgnl/puce2.gi=
f" /> <strong>=0D
<a href=3D"http://www.jeuxvideo.com/videos_editeurs/0002/00021170/guitar_he=
ro_metallica_f1q0.htm?cmpid=3DC03-200309ntxt">Guitar Hero Metallica <img  s=
tyle=3D"width: 40px; height: 15px;" alt=3D"27" src=3D"http://image.jeuxvide=
o.com/pics/p3.gif" border=3D"0" /> <img  style=3D"width: 40px; height: 15px=
;" alt=3D"26" src=3D"http://image.jeuxvideo.com/pics/x3.gif" border=3D"0" /=
> <img  style=3D"width: 40px; height: 15px;" alt=3D"25" src=3D"http://image=
..jeuxvideo.com/pics/wii.gif" border=3D"0" /></a></strong><br />Les membres =
du groupe Metallica ont invit=E9 des amis =E0 les rejoindre dans ce Guitar =
Hero qui leur est consacr=E9.</font></td>=0D
</tr>=0D
<tr>=0D
<td><font size=3D"2"><img  src=3D"http://image.jeuxvideo.com/imgnl/puce2.gi=
f" /> <strong>=0D
<a href=3D"http://www.jeuxvideo.com/videos_editeurs/0002/00021168/grand_che=
lem_tennis_f1q0.htm?cmpid=3DC03-200309ntxt">Grand Chelem Tennis <img  style=
=3D"width: 40px; height: 15px;" alt=3D"25" src=3D"http://image.jeuxvideo.co=
m/pics/wii.gif" border=3D"0" /></a></strong><br />Devenez une star du tenni=
s avec le WiiMotion Plus.</font></td>=0D
</tr>=0D
<tr>=0D
<td><font size=3D"2"><img  src=3D"http://image.jeuxvideo.com/imgnl/puce2.gi=
f" /> <strong>=0D
<a href=3D"http://www.jeuxvideo.com/videos_editeurs/0002/00021158/infamous_=
f1q0.htm?cmpid=3DC03-200309ntxt">inFamous : le jeu d'action exclusif PS3 en=
 vid=E9o <img  style=3D"width: 40px; height: 15px;" alt=3D"27" src=3D"http:=
//image.jeuxvideo.com/pics/p3.gif" border=3D"0" /></a></strong><br />Le h=
=E9ros d'inFamous nous montre ses pouvoirs.</font></td>=0D
</tr>=0D
<tr>=0D
<td><font size=3D"2"><img  src=3D"http://image.jeuxvideo.com/imgnl/puce2.gi=
f" /> <strong>=0D
<a href=3D"http://www.jeuxvideo.com/videos_editeurs/0002/00021143/batman_ar=
kham_asylum_f1q0.htm?cmpid=3DC03-200309ntxt">Batman : Arkham Asylum <img  s=
tyle=3D"width: 40px; height: 15px;" alt=3D"27" src=3D"http://image.jeuxvide=
o.com/pics/p3.gif" border=3D"0" /> <img  style=3D"width: 40px; height: 15px=
;" alt=3D"26" src=3D"http://image.jeuxvideo.com/pics/x3.gif" border=3D"0" /=
> <img  style=3D"width: 40px; height: 15px;" alt=3D"2" src=3D"http://image.=
jeuxvideo.com/pics/pc.gif" border=3D"0" /></a></strong><br />Batman utilise=
 la mani=E8re forte pour ramener l'ordre dans l'asile d'Arkham.</font></td>=
=0D
</tr>=0D
<tr>=0D
<td><img  src=3D"http://image.jeuxvideo.com/imgnl/puce.gif" /> <a href=3D"h=
ttp://www.jeuxvideo.com/news.htm?cmpid=3DC03-200309ntxt"><font size=3D"2"><=
strong>Voir toutes les news sur jeuxvideo.com</strong></font></a></td>=0D
</tr>=0D
</table>=0D
</td>=0D
</tr>=0D
</table>=0D
&nbsp;=0D
<table width=3D"505" border=3D"0" cellpadding=3D"0" cellspacing=3D"0">=0D
<tr>=0D
<td  background=3D"http://image.jeuxvideo.com/imgnl/fond_t2.gif"><img  src=
=3D"http://image.jeuxvideo.com/imgnl/titre_sponsor.gif" width=3D"57" height=
=3D"10" hspace=3D"5" vspace=3D"5" /></td>=0D
</tr>=0D
<tr>=0D
<td bgcolor=3D"#F8E2CB">=0D
<table width=3D"505" border=3D"0" cellpadding=3D"0" cellspacing=3D"10">=0D
<tr>=0D
<td>=0D
<div align=3D"center"><a href=3D"http://survey.novatris.com/cit/netobserver=
/Mars09/fr/intro.html?site=3Dwhy100pcu&tdb=3D4"><img  src=3D"http://217.174=
..215.103/pubs/wanted_468x60_FR.gif" width=3D"468" height=3D"60" border=3D"0=
" /></a></div>=0D
</td>=0D
</tr>=0D
</table>=0D
</td>=0D
</tr>=0D
</table>=0D
&nbsp;=0D
<table width=3D"505" border=3D"0" cellpadding=3D"0" cellspacing=3D"0"><tr>=
=0D
<td         background=3D"http://image.jeuxvideo.com/imgnl/fond_t1.gif"><im=
g  src=3D"http://image.jeuxvideo.com/imgnl/titre_tests.gif" width=3D"69" he=
ight=3D"10" hspace=3D"5" vspace=3D"5" /></td>=0D
</tr>=0D
<tr>=0D
<td bgcolor=3D"#F2F5F7">=0D
<table width=3D"505" border=3D"0" cellpadding=3D"0" cellspacing=3D"10">=0D
<tr><td><font size=3D"2"><strong><font color=3D"#CC0000">LES CHEVALIERS DE =
BAPHOMET : THE DIRECTOR'S CUT</font></strong><br />=0D
Le premier =E9pisode revu et corrig=E9 sur Wii.<br />=0D
<img  src=3D"http://image.jeuxvideo.com/imgnl/puce2.gif" />=0D
<a href=3Dhttp://www.jeuxvideo.com/articles/0001/00010534-les-chevaliers-de=
-baphomet-the-director-s-cut-test.htm?cmpid=3DC03-200309ttxt>=0D
<img  style=3D"width: 40px; height: 15px;" alt=3D"25" src=3D"http://image.j=
euxvideo.com/pics/wii.gif" border=3D"0" /> 13/20</a>=0D
</font></td></tr><tr><td><font size=3D"2"><strong><font color=3D"#CC0000">T=
OM CLANCY'S HAWX</font></strong><br />=0D
Les avions fous de Tom Clancy d=E9boulent plein gaz sur PC.<br />=0D
<img  src=3D"http://image.jeuxvideo.com/imgnl/puce2.gif" />=0D
<a href=3Dhttp://www.jeuxvideo.com/articles/0001/00010531-tom-clancy-s-h-a-=
w-x-test.htm?cmpid=3DC03-200309ttxt>=0D
<img  style=3D"width: 40px; height: 15px;" alt=3D"2" src=3D"http://image.je=
uxvideo.com/pics/pc.gif" border=3D"0" /> 14/20</a>=0D
</font></td></tr><tr><td><font size=3D"2"><strong><font color=3D"#CC0000">C=
ODENAME : PANZERS : COLD WAR</font></strong><br />=0D
Quand la guerre froide se r=E9chauffe, il est temps de ressortir le tank du=
 garage.<br />=0D
<img  src=3D"http://image.jeuxvideo.com/imgnl/puce2.gif" />=0D
<a href=3Dhttp://www.jeuxvideo.com/articles/0001/00010520-codename-panzers-=
cold-war-test.htm?cmpid=3DC03-200309ttxt>=0D
<img  style=3D"width: 40px; height: 15px;" alt=3D"2" src=3D"http://image.je=
uxvideo.com/pics/pc.gif" border=3D"0" /> 13/20</a>=0D
</font></td></tr><tr><td><font size=3D"2"><strong><font color=3D"#CC0000">P=
ERSONA 4</font></strong><br />=0D
Et si nos =E9crans de TV menaient vers un monde abritant la face cach=E9e d=
e notre personnalit=E9 ?<br />=0D
<img  src=3D"http://image.jeuxvideo.com/imgnl/puce2.gif" />=0D
<a href=3Dhttp://www.jeuxvideo.com/articles/0001/00010515-persona-4-test.ht=
m?cmpid=3DC03-200309ttxt>=0D
<img  style=3D"width: 40px; height: 15px;" alt=3D"5" src=3D"http://image.je=
uxvideo.com/pics/ps2.gif" border=3D"0" /> 17/20</a>=0D
</font></td></tr><tr><td><font size=3D"2"><strong><font color=3D"#CC0000">S=
ONIC ET LE CHEVALIER NOIR</font></strong><br />=0D
Le h=E9risson n'aurait-il pas mieux fait de laisser Caliburn plant=E9e dans=
 son rocher ?<br />=0D
<img  src=3D"http://image.jeuxvideo.com/imgnl/puce2.gif" />=0D
<a href=3Dhttp://www.jeuxvideo.com/articles/0001/00010508-sonic-et-le-cheva=
lier-noir-test.htm?cmpid=3DC03-200309ttxt>=0D
<img  style=3D"width: 40px; height: 15px;" alt=3D"25" src=3D"http://image.j=
euxvideo.com/pics/wii.gif" border=3D"0" /> 10/20</a>=0D
</font></td></tr><tr><td><font size=3D"2"><strong><font color=3D"#CC0000">C=
OMMAND & CONQUER : ALERTE ROUGE 3 :  LA R=C9VOLTE</font></strong><br />=0D
Sovi=E9tiques, Japonais et Alli=E9s poursuivent leur guerre.<br />=0D
<img  src=3D"http://image.jeuxvideo.com/imgnl/puce2.gif" />=0D
<a href=3Dhttp://www.jeuxvideo.com/articles/0001/00010506-command-conquer-a=
lerte-rouge-3-la-revolte-test.htm?cmpid=3DC03-200309ttxt>=0D
<img  style=3D"width: 40px; height: 15px;" alt=3D"2" src=3D"http://image.je=
uxvideo.com/pics/pc.gif" border=3D"0" /> 15/20</a>=0D
</font></td></tr><tr>=0D
<td><img  src=3D"http://image.jeuxvideo.com/imgnl/puce.gif" /> <a href=3D"h=
ttp://www.jeuxvideo.com/tests.htm?cmpid=3DC03-200309ttxt"><font size=3D"2">=
<strong>Voir tous les tests sur jeuxvideo.com</strong></font></a></td>=0D
</tr>=0D
</table>=0D
</td>=0D
</tr><tr>=0D
<td         background=3D"http://image.jeuxvideo.com/imgnl/fond_t1.gif"><im=
g  src=3D"http://image.jeuxvideo.com/imgnl/titre_apercus.gif" width=3D"78" =
height=3D"10" hspace=3D"5" vspace=3D"5" /></td>=0D
</tr>=0D
<tr>=0D
<td bgcolor=3D"#F2F5F7">=0D
<table width=3D"505" border=3D"0" cellpadding=3D"0" cellspacing=3D"10">=0D
<tr><td><font size=3D"2"><strong><font color=3D"#CC0000">G.I. JOE</font></s=
trong><br/>=0D
Les G.I. Joe combattent les soldats de Cobra dans vos salons. Tout ce qu'il=
 faut savoir dans notre aper=E7u.<br />=0D
<img  src=3D"http://image.jeuxvideo.com/imgnl/puce2.gif" />=0D
<a href=3Dhttp://www.jeuxvideo.com/articles/0001/00010524-gi-joe-preview.ht=
m?cmpid=3DC03-200309atxt>Aper&ccedil;u <img  style=3D"width: 40px; height: =
15px;" alt=3D"27" src=3D"http://image.jeuxvideo.com/pics/p3.gif" border=3D"=
0" /></a>=0D
<img  src=3D"http://image.jeuxvideo.com/imgnl/sepv.gif" />=0D
<a href=3Dhttp://www.jeuxvideo.com/articles/0001/00010523-gi-joe-preview.ht=
m?cmpid=3DC03-200309atxt>Aper&ccedil;u <img  style=3D"width: 40px; height: =
15px;" alt=3D"26" src=3D"http://image.jeuxvideo.com/pics/x3.gif" border=3D"=
0" /></a>=0D
</font></td></tr><tr><td><font size=3D"2"><strong><font color=3D"#CC0000">M=
YSIMS RACING</font></strong><br/>=0D
MySims quitte l'=E9tabli pour l'atelier de m=E9canique.<br />=0D
<img  src=3D"http://image.jeuxvideo.com/imgnl/puce2.gif" />=0D
<a href=3Dhttp://www.jeuxvideo.com/articles/0001/00010509-mysims-racing-pre=
view.htm?cmpid=3DC03-200309atxt>Aper&ccedil;u <img  style=3D"width: 40px; h=
eight: 15px;" alt=3D"25" src=3D"http://image.jeuxvideo.com/pics/wii.gif" bo=
rder=3D"0" /></a>=0D
</font></td></tr><tr><td><font size=3D"2"><strong><font color=3D"#CC0000">A=
RMY OF TWO : LE 40=C8ME JOUR</font></strong><br/>=0D
D=E9couvrez plus en d=E9tail la suite d'Army of Two dans notre aper=E7u !<b=
r />=0D
<img  src=3D"http://image.jeuxvideo.com/imgnl/puce2.gif" />=0D
<a href=3Dhttp://www.jeuxvideo.com/articles/0001/00010505-army-of-two-le-40=
eme-jour-preview.htm?cmpid=3DC03-200309atxt>Aper&ccedil;u <img  style=3D"wi=
dth: 40px; height: 15px;" alt=3D"27" src=3D"http://image.jeuxvideo.com/pics=
/p3.gif" border=3D"0" /></a>=0D
<img  src=3D"http://image.jeuxvideo.com/imgnl/sepv.gif" />=0D
<a href=3Dhttp://www.jeuxvideo.com/articles/0001/00010505-army-of-two-le-40=
eme-jour-preview.htm?cmpid=3DC03-200309atxt>Aper&ccedil;u <img  style=3D"wi=
dth: 40px; height: 15px;" alt=3D"26" src=3D"http://image.jeuxvideo.com/pics=
/x3.gif" border=3D"0" /></a>=0D
</font></td></tr><tr>=0D
<td><img  src=3D"http://image.jeuxvideo.com/imgnl/puce.gif" /> <a href=3D"h=
ttp://www.jeuxvideo.com/previews.htm?cmpid=3DC03-200309atxt"><font size=3D"=
2"><strong>Voir tous les aper&ccedil;us sur jeuxvideo.com</strong></font></=
a></td>=0D
</tr>=0D
</table>=0D
</td>=0D
</tr><tr>=0D
<td         background=3D"http://image.jeuxvideo.com/imgnl/fond_t1.gif"><im=
g  src=3D"http://image.jeuxvideo.com/imgnl/titre_dossiers.gif" width=3D"85"=
 height=3D"10" hspace=3D"5" vspace=3D"5" /></td>=0D
</tr>=0D
<tr>=0D
<td bgcolor=3D"#F2F5F7">=0D
<table width=3D"505" border=3D"0" cellpadding=3D"0" cellspacing=3D"10">=0D
<tr><td><font size=3D"2"><strong><font color=3D"#CC0000">Wii : les 5 raison=
s du succ=E8s</font></strong><br />=0D
Pour quelles raisons la Wii est =E0 ce jour, la console de salon num=E9ro 1=
 des ventes ?<br />=0D
<img  src=3D"http://image.jeuxvideo.com/imgnl/puce2.gif" />=0D
<a href=3Dhttp://www.jeuxvideo.com/articles/0001/00010392_dossier.htm?cmpid=
=3DC03-200309ztxt>Dossier=0D
<img  style=3D"width: 40px; height: 15px;" alt=3D"25" src=3D"http://image.j=
euxvideo.com/pics/wii.gif" border=3D"0" />  </a>=0D
</font></td></tr><tr>=0D
<td><img  src=3D"http://image.jeuxvideo.com/imgnl/puce.gif" /> <a href=3D"h=
ttp://www.jeuxvideo.com/dossiers.htm?cmpid=3DC03-200309ztxt"><font size=3D"=
2"><strong>Voir tous les dossiers sur jeuxvideo.com</strong></font></a></td=
>=0D
</tr>=0D
</table>=0D
</td>=0D
</tr><tr>=0D
<td         background=3D"http://image.jeuxvideo.com/imgnl/fond_t1.gif"><im=
g  src=3D"http://image.jeuxvideo.com/imgnl/titre_soluces.gif" width=3D"79" =
height=3D"10" hspace=3D"5" vspace=3D"5" /></td>=0D
</tr>=0D
<tr>=0D
<td bgcolor=3D"#F2F5F7">=0D
<table width=3D"505" border=3D"0" cellpadding=3D"0" cellspacing=3D"10">=0D
<tr><td><font size=3D"2"><strong><font color=3D"#CC0000">Saints Row 2</font=
></strong><br />=0D
Place =E0 l'action totale dans Saints Row 2, le GTA-like qui ne se prend pa=
s au s=E9rieux.<br />=0D
<img  src=3D"http://image.jeuxvideo.com/imgnl/puce2.gif" />=0D
<a href=3D"http://www.jeuxvideo.com/cheats/00018551/trucs-et-astuces-saints=
-row-2-playstation-3-ps3.htm?cmpid=3DC03-200309ytxt">Solution=0D
<img  style=3D"width: 40px; height: 15px;" alt=3D"27" src=3D"http://image.j=
euxvideo.com/pics/p3.gif" border=3D"0" /></a>=0D
<img  src=3D"http://image.jeuxvideo.com/imgnl/sepv.gif" />=0D
<a href=3D"http://www.jeuxvideo.com/cheats/00018552/trucs-et-astuces-saints=
-row-2-xbox-360.htm?cmpid=3DC03-200309ytxt">Solution=0D
<img  style=3D"width: 40px; height: 15px;" alt=3D"26" src=3D"http://image.j=
euxvideo.com/pics/x3.gif" border=3D"0" /></a>=0D
<img  src=3D"http://image.jeuxvideo.com/imgnl/sepv.gif" />=0D
<a href=3D"http://www.jeuxvideo.com/cheats/00023067/trucs-et-astuces-saints=
-row-2-pc.htm?cmpid=3DC03-200309ytxt">Solution=0D
<img  style=3D"width: 40px; height: 15px;" alt=3D"2" src=3D"http://image.je=
uxvideo.com/pics/pc.gif" border=3D"0" /></a>=0D
</font></td></tr></table>=0D
</td>=0D
</tr></table>=0D
</td>=0D
<td>&nbsp;</td>=0D
<td width=3D"130" valign=3D"top" bgcolor=3D"#E85C00"><img  src=3D"http://im=
age.jeuxvideo.com/imgnl/titre_boutique.gif" width=3D"130" height=3D"20" />=
=0D
<table width=3D"130" border=3D"0" cellspacing=3D"0" cellpadding=3D"10">=0D
<tr><td align=3D"center">=0D
<a href=3D"http://www.jeuxvideo.com/boutique/redirect.php?ID=3D00001458&Url=
=3Dhttp%3A%2F%2Fwww.amazon.fr%2Fexec%2Fobidos%2FASIN%2FB001DF7JHS%2Fjeuxvid=
eo_newsletter-21"><img  src=3D"http://image.jeuxvideo.com/images_amazon/ama=
zon_B001DF7JHS_petit.jpg" border=3D"0" alt=3D"&nbsp;" />=0D
<img  src=3D"http://image.jeuxvideo.com/pics/p3.gif" vspace=3D"3" border=3D=
"0" align=3D"middle" alt=3D"&nbsp;" /> <font color=3D"#FFFFFF" size=3D"3"><=
strong>23.85 &euro;</strong></font></a>=0D
</td></tr>=0D
<tr><td align=3D"center" bgcolor=3D"#ED8618">=0D
<a href=3D"http://www.jeuxvideo.com/boutique/redirect.php?ID=3D00001458&Url=
=3Dhttp%3A%2F%2Fwww.amazon.fr%2Fexec%2Fobidos%2FASIN%2FB001KCYIJ6%2Fjeuxvid=
eo_newsletter-21"><img  src=3D"http://image.jeuxvideo.com/pubs/newsletter/a=
mazon_B001KCYIJ6.jpg" border=3D"0" alt=3D"&nbsp;" />=0D
<img  src=3D"http://image.jeuxvideo.com/pics/p3.gif" vspace=3D"3" border=3D=
"0" align=3D"middle" alt=3D"&nbsp;" /> <font color=3D"#FFFFFF" size=3D"3"><=
strong>59.99 &euro;</strong></font></a>=0D
</td></tr>=0D
<tr><td align=3D"center">=0D
<a href=3D"http://www.jeuxvideo.com/boutique/redirect.php?ID=3D00001458&Url=
=3Dhttp%3A%2F%2Fwww.amazon.fr%2Fexec%2Fobidos%2FASIN%2FB001LOG1FC%2Fjeuxvid=
eo_newsletter-21"><img  src=3D"http://image.jeuxvideo.com/pubs/newsletter/a=
mazon_B001LOG1FC.jpg" border=3D"0" alt=3D"&nbsp;" />=0D
<img  src=3D"http://image.jeuxvideo.com/pics/pc.gif" vspace=3D"3" border=3D=
"0" align=3D"middle" alt=3D"&nbsp;" /> <font color=3D"#FFFFFF" size=3D"3"><=
strong>42.99 &euro;</strong></font></a>=0D
</td></tr>=0D
<tr><td align=3D"center" bgcolor=3D"#CC0000"><strong><font color=3D"#FFFFFF=
" size=3D"2">T&eacute;l&eacute;chargement</font></strong></td></tr>=0D
<tr><td align=3D"center" bgcolor=3D"#ED8618">=0D
<a href=3D"http://www.jeuxvideo.com/boutique/redirect.php?ID=3D00002004&Url=
=3Dhttp%3A%2F%2Fwww.dlgamer.com%2Fbuy-command_conquer_alerte_rouge_3_la_rev=
olte_uprising_-telechargement-p-4871.html%3Faffil%3D513036722%26typnews%3Dn=
ewsletters%3D396"><img  src=3D"http://image.jeuxvideo.com/images_amazon/nex=
way_4871.jpg" border=3D"0" alt=3D"&nbsp;" />=0D
<img  src=3D"http://image.jeuxvideo.com/pics/pc.gif" vspace=3D"3" border=3D=
"0" align=3D"middle" alt=3D"&nbsp;" /><font color=3D"#FFFFFF" size=3D"3"> <=
strong>19.90 &euro;</strong></font></a>=0D
</td></tr>=0D
<tr><td align=3D"center">=0D
<a href=3D"http://www.jeuxvideo.com/boutique/redirect.php?ID=3D00002004&Url=
=3Dhttp%3A%2F%2Fboonty.jeuxvideo.com%2Ftelecharger%2Falabama-smith.html%3Ft=
rackercode%3DNLJV%26cid%3DAlabama%26tid%3Dnewsletter"><img  src=3D"http://i=
mage.jeuxvideo.com/pubs/newsletter/alabama.jpg" border=3D"0" alt=3D"&nbsp;"=
 />=0D
<img  src=3D"http://image.jeuxvideo.com/pics/pc.gif" vspace=3D"3" border=3D=
"0" align=3D"middle" alt=3D"&nbsp;" /><font color=3D"#FFFFFF" size=3D"3"> <=
strong>Gratuit</strong></font></a>=0D
</td></tr>=0D
</table>=0D
</td>=0D
</tr>=0D
</table>=0D
</td>=0D
</tr><tr>=0D
<td>=0D
<table width=3D"645" border=3D"0" cellpadding=3D"0" cellspacing=3D"0">=0D
<tr>=0D
<td         background=3D"http://image.jeuxvideo.com/imgnl/fond_t1.gif"><im=
g  src=3D"http://image.jeuxvideo.com/imgnl/titre_videos.gif" width=3D"70" h=
eight=3D"10" hspace=3D"5" vspace=3D"5" /></td>=0D
</tr>=0D
<tr>=0D
<td bgcolor=3D"#F2F5F7">=0D
<table width=3D"100%%" border=3D"0" cellspacing=3D"0" cellpadding=3D"10">=
=0D
<tr>=0D
<td width=3D"290" valign=3D"top" bgcolor=3D"#E6E8E8"><font color=3D"#CC0000=
" size=3D"2"><strong>Gaming Live &agrave; la une&nbsp;:</strong></font><br =
/>=0D
<table width=3D"290" border=3D"0" cellspacing=3D"0" cellpadding=3D"0">=0D
<tr><td><img  src=3D"http://image.jeuxvideo.com/imgnl/player1b.gif" alt=3D"=
" width=3D"290" /></td></tr>=0D
<tr><td align=3D"center" bgcolor=3D"#3A3A3A"><a href=3D"http://www.jeuxvide=
o.com/gaming_live/0000/00002400/sonic_et_le_chevalier_noir_f1q0.htm?cmpid=
=3DC03-200309gimg"><img  src=3D"http://image.jeuxvideo.com/gaming_live_imag=
es/200903/sonic_et_le_chevalier_noir_wii-00002400-low.jpg" width=3D"280" bo=
rder=3D"0" /></a></td></tr>=0D
<tr><td><a href=3D"http://www.jeuxvideo.com/gaming_live/0000/00002400/sonic=
_et_le_chevalier_noir_f1q0.htm?cmpid=3DC03-200309gimg"><img  src=3D"http://=
image.jeuxvideo.com/imgnl/player2b.gif" alt=3D"" width=3D"290" border=3D"0=
" /></a></td></tr></table>=0D
<font size=3D"2"><a href=3D"http://www.jeuxvideo.com/gaming_live/0000/00002=
400/sonic_et_le_chevalier_noir_f1q0.htm?cmpid=3DC03-200309gtxt"><strong>Son=
ic et le Chevalier Noir</strong> =0D
</a><br />Dans ce gaming live de Sonic et le Chevalier Noir sur Wii, on vou=
s explique pourquoi le jeu, en d=E9pit de ses bonnes inte...<br />=0D
<strong>Dur&eacute;e : 8'05''</strong> </font></td>=0D
<td valign=3D"top"><font size=3D"2"><font color=3D"#CC0000"><strong>Dernier=
s Gaming Live&nbsp;:</strong></font><br />- Exit 2 - Xbox 360<br />=0D
- MadWorld - 1/2 : Le quartier asiatique s'anime - Wii<br />=0D
- MadWorld - 2/2 : Des mini-jeux sanglants - Wii<br />=0D
- Mr Bean : Total D=E9lire sur Wii - Wii<br />=0D
- Mr Bean : Total D=E9lire sur Wii - Wii<br />=0D
- Sonic et le Chevalier Noir - Wii<br />=0D
<img  src=3D"http://image.jeuxvideo.com/imgnl/puce.gif" /> <a href=3D"http:=
//www.jeuxvideo.com/gaming_live.htm?cmpid=3DC03-200309gtxt"><strong>Tous le=
s Gaming Live sur jeuxvideo.com<br />=0D
<br />=0D
</strong></a></font><font size=3D"2"><font color=3D"#CC0000"><strong>Derni&=
egrave;res vid&eacute;os &eacute;diteurs&nbsp;:</strong></font><br />- Cham=
pions Online - Bienvenue =E0 Lemuria - PC<br />=0D
- Ether Saga Online - Trailer de lancement - PC<br />=0D
- Vanilla Gate - Une bataille color=E9e - PC<br />=0D
- Lux-Pain - Mise en ambiance - Nintendo DS<br />=0D
- Still Life 2 - Deux h=E9ro=EFnes pour une seule enqu=EAte - PC<br />=0D
- Les Chevaliers de Baphomet : The Director's Cut - Trailer de lancement - =
Wii<br />=0D
<img  src=3D"http://image.jeuxvideo.com/imgnl/puce.gif" /> <a href=3D"http:=
//www.jeuxvideo.com/videos.htm?cmpid=3DC03-200309vtxt"><strong>Toutes les v=
id&eacute;os &eacute;diteurs sur jeuxvideo.com</strong></a></font></td>=0D
</tr>=0D
</table>=0D
</td>=0D
</tr>=0D
</table>=0D
</td>=0D
</tr><tr>=0D
<td>=0D
<table width=3D"645" border=3D"0" cellpadding=3D"0" cellspacing=3D"0">=0D
<tr>=0D
<td         background=3D"http://image.jeuxvideo.com/imgnl/fond_t1.gif"><im=
g  src=3D"http://image.jeuxvideo.com/imgnl/titre_downloads.gif" width=3D"72=
" height=3D"10" hspace=3D"5" vspace=3D"5" /></td>=0D
</tr>=0D
<tr>=0D
<td bgcolor=3D"#F2F5F7">=0D
<table width=3D"100%%" border=3D"0" cellpadding=3D"10" cellspacing=3D"0">=
=0D
<tr>=0D
<td width=3D"50%%" valign=3D"top"><font size=3D"2"><font color=3D"#CC0000">=
<strong>Derniers jeux complets et d=E9mos&nbsp;:</strong></font><br />- La =
Tale, 59 Mo<br />=0D
- Football Challenge, 32 Mo<br />=0D
- Wallace & Gromit's Grand Adventures - Episode 1 : Fright of the Bumblebee=
s, 138 Mo<br />=0D
- Dungeon Party, 420 Mo<br />=0D
- Hysteria Hospital : Emergency Ward, 74 Mo<br />=0D
- The Maw, 191 Mo<br />=0D
<img  src=3D"http://image.jeuxvideo.com/imgnl/puce.gif" /> <a href=3D"http:=
//www.jeuxvideo.com/demos.htm?cmpid=3DC03-200309dtxt"><strong>Toutes les d&=
eacute;mos sur jeuxvideo.com</strong></a><br />=0D
</font></td>=0D
<td width=3D"50%%" valign=3D"top"><font size=3D"2"><font color=3D"#CC0000">=
<strong>Derniers patches&nbsp;:</strong></font><br />- Tom Clancy's EndWar,=
 19 Mo<br />=0D
- Tom Clancy's HAWX, 38 Mo<br />=0D
- NecroVisioN, 23 Mo<br />=0D
- Civilization IV : Colonization, 23 Mo<br />=0D
- World in Conflict, 997 Mo<br />=0D
- Command & Conquer : Alerte Rouge 3, 174 Mo<br />=0D
<img  src=3D"http://image.jeuxvideo.com/imgnl/puce.gif" /> <a href=3D"http:=
//www.jeuxvideo.com/patches.htm?cmpid=3DC03-200309ptxt"><strong>Tous les pa=
tches sur jeuxvideo.com</strong></a></font></td>=0D
</tr>=0D
</table>=0D
</td>=0D
</tr>=0D
</table>=0D
</td>=0D
</tr><tr>=0D
<td align=3D"center"><font size=3D"2" face=3D"Arial, Helvetica, sans-serif"=
> <strong>A bient&ocirc;t sur <a href=3D"http://www.jeuxvideo.com/?cmpid=3D=
C03-200309btxt">jeuxvideo.com</a> !</strong></font></td>=0D
</tr>=0D
<tr>=0D
<td height=3D"30" bgcolor=3D"#DFDFDF">=0D
<p align=3D"center"><font size=3D"1" face=3D"Verdana, Arial, Helvetica, san=
s-serif"><strong>La r&eacute;daction &copy; <a href=3D"http://www.odyssee-i=
nteractive.com/">L'Odyss&eacute;e Interactive jeuxvideo.com</a><br />=0D
Pour vous d&eacute;sabonner, <a href=3D"http://www.jeuxvideo.com/cgi-bin/ms=
ignin.cgi?cmpid=3DC03-200309btxt&action=3Dunsubscribe">cliquer ici</a></str=
ong> </font></p>=0D
</td>=0D
</tr>=0D
</table>=0D
</body>=0D
</html>=0D
poshu
Messages : 1138
Inscription : sam. 31/juil./2004 22:32

Message par poshu »

Bah c'est la page... affiche la dans un webgadget et on en parle plus...

Edit: ah, non, y'a des =0D et des 3D qui font je sais pas trop quoi là...
Avatar de l’utilisateur
Le psychopathe
Messages : 764
Inscription : jeu. 03/mars/2005 19:23

Message par Le psychopathe »

poshu a écrit :Bah c'est la page... affiche la dans un webgadget et on en parle plus...

Edit: ah, non, y'a des =0D et des 3D qui font je sais pas trop quoi là...
bon j'ai modifié le petit code test :

Code : Tout sélectionner

;
; Get last message (and attachments)
;
Server.s = "pop.free.fr"
Port.l = 110
User.s = "Mon user"
Pwd.s = "Mon pass"
;
If PurePOP3_OpenPOP3Connection(Server, Port, User, Pwd) = #PurePOP3_Ok
  Debug "Connected"
  ; PurePOP3_Trace(#TRUE)
  Messages = PurePOP3_CountMessages()
  Debug "You have " + Str(Messages) + " messages(s)"
  If Messages
    Debug "Message(s) total size : " + Str(PurePOP3_GetMessagesTotalSize()) + " bytes"
    Debug "Message " + Str(Messages) + " size : " + Str(PurePOP3_GetMessageSize(Messages)) + " bytes"
    Debug "Retrieve message " + Str(Messages)
    If PurePOP3_RetrieveMessage(Messages-1) > 0
      Debug "--------------"
      Debug "Message info : " + PurePOP3_GetMessageInfo()
      *Message = PurePOP3_GetMessageTextInMemory(#True)
      If *Message
        Debug "Message text :"
        Debug ""
        text$ = PeekS(*Message)
        Debug ""
        FreeMemory(*Message)
      EndIf
      Attachements.s = PurePOP3_ListAttachementsForMessage()
      If Attachements
        Debug "----------------"
        Debug "Attachement(s) : " + Attachements
        If PurePOP3_SaveAttachementsToFile("")
          Debug "Attachement(s) saved to current directory"
        Else
          Debug "Could not save attachement(s)"
        EndIf
      Else
        Debug "--------------"
        Debug "No attachments"
      EndIf
    EndIf
  EndIf
  PurePOP3_ClosePOP3Connection()
Else
  Debug PurePOP3_GetLastServerMessage()
EndIf

text$ = RemoveString(text$, "=0D")
text$ = RemoveString(text$, "3D")


If OpenWindow(0,0,0,600,300,"WebGadget",#PB_Window_SystemMenu|#PB_Window_ScreenCentered) 
    WebGadget(0,10,10,580,280," ")
    SetGadgetItemText(0,  #PB_Web_HtmlCode , text$)
    Repeat 
    Until WaitWindowEvent() = #PB_Event_CloseWindow
  EndIf
C'est mieux mais les images ne s'affichent pas

Voilà la source html qui sort de ce code :

Code : Tout sélectionner

<!-- saved from url=(0022)http://internet.e-mail -->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.=
w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-=
1" />
<title>Newsletter Jeuxvideo.com</title>
<style type="text/css">
<!--
body {font-family: Arial, Helvetica, sans-serif;}
a:link {text-decoration: none; color: #0066CC;}
a:visited {text-decoration: none; color: #0066CC;}
a:hover {text-decoration: none; color: #FF6600;}
img {vertical-align: middle;}
-->
</style>
</head>
<body bgcolor="#CCCCCC">
<table width="665" border="0" align="center" cellpadding="0" cellsp=
acing="10" bgcolor="#FFFFFF">
<tr>
<td  background="http://image.jeuxvideo.com/imgnl/header_fond.gif">
<table width="645" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="225"><img  src="http://image.jeuxvideo.com/imgnl/header_logo=
..gif" width="225" height="50" /></td>
<td width="260"><strong><font color="#006699" size="2" face="Verdan=
a, Arial, Helvetica, sans-serif">Lettre d'information n&deg;527 </font></st=
rong></td>
<td width="160" align="right"> <strong><font color="#006699" size="=
1" face="Verdana, Arial, Helvetica, sans-serif">20 mars 2009&nbsp;</font>=
</strong> </td>
</tr>
</table>
</td>
</tr>
<tr>
<td>
<table width="645" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="505" class="infos">
<!-- Edito -->
<table width="505" border="0" cellpadding="0" cellspacing="0">
<tr>
<td         background="http://image.jeuxvideo.com/imgnl/fond_t1.gif"><im=
g  src="http://image.jeuxvideo.com/imgnl/titre_alaune.gif" width="141" =
height="10" hspace="5" vspace="5" /></td>
</tr>
<tr>
<td bgcolor="#F2F5F7">
<table width="505" border="0" cellpadding="0" cellspacing="10">
<tr>
<td><font size="2"><img  src="http://image.jeuxvideo.com/imgnl/puce2.gi=
f" /> <strong>
<!-- Titre de la newsletter -->
<a href="http://www.jeuxvideo.com/articles/0001/00010521-madworld-test.ht=
m?cmpid=C03-200309utxt">MadWorld  <img  style="width: 40px; height: 15p=
x;" alt="25" src="http://image.jeuxvideo.com/pics/wii.gif" border="0"=
 /></a>
</strong></font>
<table border="0" cellspacing="0" cellpadding="1"><tr>
<td width="210" align="center" valign="middle" bgcolor="#000000"><f=
ont size="2"><a href="http://www.jeuxvideo.com/articles/0001/00010521-m=
adworld-test.htm?cmpid=C03-200309uimg"><img  src="http://image.jeuxvide=
o.com/newsletter/2009-03-20-madworld.jpg" width="210" vspace="0" border=
="0" /></a></font></td><td>&nbsp;</td><td valign="top" align="justify=
"> <font size="2">
<!-- Texte de la newsletter -->
Faites couler des flots d'h=E9moglobine sur votre Wii.</font><br /><img  sr=
c="http://image.jeuxvideo.com/imgnl/puce.gif" /> <font size="2"><strong=
><a href="http://www.jeuxvideo.com/articles/0001/00010521-madworld-test.h=
tm?cmpid=C03-200309utxt">Lire la suite...</a></strong></font></td>
</tr></table>
</td></tr></table>
</td></tr></table>
&nbsp;<table width="505" border="0" cellpadding="0" cellspacing="0"=
>
<tr>
<td         background="http://image.jeuxvideo.com/imgnl/fond_t1.gif">
<img  src="http://image.jeuxvideo.com/imgnl/titre_news.gif" width="64" =
height="10" hspace="5" vspace="5" /></td>
</tr>
<tr>
<td bgcolor="#F2F5F7">
<table width="505" border="0" cellpadding="0" cellspacing="10"><tr>=

<td><font size="2"><img  src="http://image.jeuxvideo.com/imgnl/puce2.gi=
f" /> <strong>
<a href="http://www.jeuxvideo.com/videos_editeurs/0002/00021233/the_chron=
icles_of_riddick_assault_on_dark_athena_f1q0.htm?cmpid=C03-200309ntxt">Th=
e Chronicles of Riddick : Assault on Dark Athena <img  style="width: 40px=
; height: 15px;" alt="27" src="http://image.jeuxvideo.com/pics/p3.gif" =
border="0" /> <img  style="width: 40px; height: 15px;" alt="26" src=
="http://image.jeuxvideo.com/pics/x3.gif" border="0" /> <img  style="=
width: 40px; height: 15px;" alt="2" src="http://image.jeuxvideo.com/pic=
s/pc.gif" border="0" /></a></strong><br />Vin Diesel n'aime pas que l'on =
d=E9range les morts.</font></td>
</tr>
<tr>
<td><font size="2"><img  src="http://image.jeuxvideo.com/imgnl/puce2.gi=
f" /> <strong>
<a href="http://www.jeuxvideo.com/videos_editeurs/0002/00021170/guitar_he=
ro_metallica_f1q0.htm?cmpid=C03-200309ntxt">Guitar Hero Metallica <img  s=
tyle="width: 40px; height: 15px;" alt="27" src="http://image.jeuxvide=
o.com/pics/p3.gif" border="0" /> <img  style="width: 40px; height: 15px=
;" alt="26" src="http://image.jeuxvideo.com/pics/x3.gif" border="0" /=
> <img  style="width: 40px; height: 15px;" alt="25" src="http://image=
..jeuxvideo.com/pics/wii.gif" border="0" /></a></strong><br />Les membres =
du groupe Metallica ont invit=E9 des amis =E0 les rejoindre dans ce Guitar =
Hero qui leur est consacr=E9.</font></td>
</tr>
<tr>
<td><font size="2"><img  src="http://image.jeuxvideo.com/imgnl/puce2.gi=
f" /> <strong>
<a href="http://www.jeuxvideo.com/videos_editeurs/0002/00021168/grand_che=
lem_tennis_f1q0.htm?cmpid=C03-200309ntxt">Grand Chelem Tennis <img  style=
="width: 40px; height: 15px;" alt="25" src="http://image.jeuxvideo.co=
m/pics/wii.gif" border="0" /></a></strong><br />Devenez une star du tenni=
s avec le WiiMotion Plus.</font></td>
</tr>
<tr>
<td><font size="2"><img  src="http://image.jeuxvideo.com/imgnl/puce2.gi=
f" /> <strong>
<a href="http://www.jeuxvideo.com/videos_editeurs/0002/00021158/infamous_=
f1q0.htm?cmpid=C03-200309ntxt">inFamous : le jeu d'action exclusif PS3 en=
 vid=E9o <img  style="width: 40px; height: 15px;" alt="27" src="http:=
//image.jeuxvideo.com/pics/p3.gif" border="0" /></a></strong><br />Le h=
=E9ros d'inFamous nous montre ses pouvoirs.</font></td>
</tr>
<tr>
<td><font size="2"><img  src="http://image.jeuxvideo.com/imgnl/puce2.gi=
f" /> <strong>
<a href="http://www.jeuxvideo.com/videos_editeurs/0002/00021143/batman_ar=
kham_asylum_f1q0.htm?cmpid=C03-200309ntxt">Batman : Arkham Asylum <img  s=
tyle="width: 40px; height: 15px;" alt="27" src="http://image.jeuxvide=
o.com/pics/p3.gif" border="0" /> <img  style="width: 40px; height: 15px=
;" alt="26" src="http://image.jeuxvideo.com/pics/x3.gif" border="0" /=
> <img  style="width: 40px; height: 15px;" alt="2" src="http://image.=
jeuxvideo.com/pics/pc.gif" border="0" /></a></strong><br />Batman utilise=
 la mani=E8re forte pour ramener l'ordre dans l'asile d'Arkham.</font></td>=

</tr>
<tr>
<td><img  src="http://image.jeuxvideo.com/imgnl/puce.gif" /> <a href="h=
ttp://www.jeuxvideo.com/news.htm?cmpid=C03-200309ntxt"><font size="2"><=
strong>Voir toutes les news sur jeuxvideo.com</strong></font></a></td>
</tr>
</table>
</td>
</tr>
</table>
&nbsp;
<table width="505" border="0" cellpadding="0" cellspacing="0">
<tr>
<td  background="http://image.jeuxvideo.com/imgnl/fond_t2.gif"><img  src=
="http://image.jeuxvideo.com/imgnl/titre_sponsor.gif" width="57" height=
="10" hspace="5" vspace="5" /></td>
</tr>
<tr>
<td bgcolor="#F8E2CB">
<table width="505" border="0" cellpadding="0" cellspacing="10">
<tr>
<td>
<div align="center"><a href="http://survey.novatris.com/cit/netobserver=
/Mars09/fr/intro.html?site=why100pcu&tdb=4"><img  src="http://217.174=
..215.103/pubs/wanted_468x60_FR.gif" width="468" height="60" border="0=
" /></a></div>
</td>
</tr>
</table>
</td>
</tr>
</table>
&nbsp;
<table width="505" border="0" cellpadding="0" cellspacing="0"><tr>=

<td         background="http://image.jeuxvideo.com/imgnl/fond_t1.gif"><im=
g  src="http://image.jeuxvideo.com/imgnl/titre_tests.gif" width="69" he=
ight="10" hspace="5" vspace="5" /></td>
</tr>
<tr>
<td bgcolor="#F2F5F7">
<table width="505" border="0" cellpadding="0" cellspacing="10">
<tr><td><font size="2"><strong><font color="#CC0000">LES CHEVALIERS DE =
BAPHOMET : THE DIRECTOR'S CUT</font></strong><br />
Le premier =E9pisode revu et corrig=E9 sur Wii.<br />
<img  src="http://image.jeuxvideo.com/imgnl/puce2.gif" />
<a href=http://www.jeuxvideo.com/articles/0001/00010534-les-chevaliers-de=
-baphomet-the-director-s-cut-test.htm?cmpid=C03-200309ttxt>
<img  style="width: 40px; height: 15px;" alt="25" src="http://image.j=
euxvideo.com/pics/wii.gif" border="0" /> 13/20</a>
</font></td></tr><tr><td><font size="2"><strong><font color="#CC0000">T=
OM CLANCY'S HAWX</font></strong><br />
Les avions fous de Tom Clancy d=E9boulent plein gaz sur PC.<br />
<img  src="http://image.jeuxvideo.com/imgnl/puce2.gif" />
<a href=http://www.jeuxvideo.com/articles/0001/00010531-tom-clancy-s-h-a-=
w-x-test.htm?cmpid=C03-200309ttxt>
<img  style="width: 40px; height: 15px;" alt="2" src="http://image.je=
uxvideo.com/pics/pc.gif" border="0" /> 14/20</a>
</font></td></tr><tr><td><font size="2"><strong><font color="#CC0000">C=
ODENAME : PANZERS : COLD WAR</font></strong><br />
Quand la guerre froide se r=E9chauffe, il est temps de ressortir le tank du=
 garage.<br />
<img  src="http://image.jeuxvideo.com/imgnl/puce2.gif" />
<a href=http://www.jeuxvideo.com/articles/0001/00010520-codename-panzers-=
cold-war-test.htm?cmpid=C03-200309ttxt>
<img  style="width: 40px; height: 15px;" alt="2" src="http://image.je=
uxvideo.com/pics/pc.gif" border="0" /> 13/20</a>
</font></td></tr><tr><td><font size="2"><strong><font color="#CC0000">P=
ERSONA 4</font></strong><br />
Et si nos =E9crans de TV menaient vers un monde abritant la face cach=E9e d=
e notre personnalit=E9 ?<br />
<img  src="http://image.jeuxvideo.com/imgnl/puce2.gif" />
<a href=http://www.jeuxvideo.com/articles/0001/00010515-persona-4-test.ht=
m?cmpid=C03-200309ttxt>
<img  style="width: 40px; height: 15px;" alt="5" src="http://image.je=
uxvideo.com/pics/ps2.gif" border="0" /> 17/20</a>
</font></td></tr><tr><td><font size="2"><strong><font color="#CC0000">S=
ONIC ET LE CHEVALIER NOIR</font></strong><br />
Le h=E9risson n'aurait-il pas mieux fait de laisser Caliburn plant=E9e dans=
 son rocher ?<br />
<img  src="http://image.jeuxvideo.com/imgnl/puce2.gif" />
<a href=http://www.jeuxvideo.com/articles/0001/00010508-sonic-et-le-cheva=
lier-noir-test.htm?cmpid=C03-200309ttxt>
<img  style="width: 40px; height: 15px;" alt="25" src="http://image.j=
euxvideo.com/pics/wii.gif" border="0" /> 10/20</a>
</font></td></tr><tr><td><font size="2"><strong><font color="#CC0000">C=
OMMAND & CONQUER : ALERTE ROUGE 3 :  LA R=C9VOLTE</font></strong><br />
Sovi=E9tiques, Japonais et Alli=E9s poursuivent leur guerre.<br />
<img  src="http://image.jeuxvideo.com/imgnl/puce2.gif" />
<a href=http://www.jeuxvideo.com/articles/0001/00010506-command-conquer-a=
lerte-rouge-3-la-revolte-test.htm?cmpid=C03-200309ttxt>
<img  style="width: 40px; height: 15px;" alt="2" src="http://image.je=
uxvideo.com/pics/pc.gif" border="0" /> 15/20</a>
</font></td></tr><tr>
<td><img  src="http://image.jeuxvideo.com/imgnl/puce.gif" /> <a href="h=
ttp://www.jeuxvideo.com/tests.htm?cmpid=C03-200309ttxt"><font size="2">=
<strong>Voir tous les tests sur jeuxvideo.com</strong></font></a></td>
</tr>
</table>
</td>
</tr><tr>
<td         background="http://image.jeuxvideo.com/imgnl/fond_t1.gif"><im=
g  src="http://image.jeuxvideo.com/imgnl/titre_apercus.gif" width="78" =
height="10" hspace="5" vspace="5" /></td>
</tr>
<tr>
<td bgcolor="#F2F5F7">
<table width="505" border="0" cellpadding="0" cellspacing="10">
<tr><td><font size="2"><strong><font color="#CC0000">G.I. JOE</font></s=
trong><br/>
Les G.I. Joe combattent les soldats de Cobra dans vos salons. Tout ce qu'il=
 faut savoir dans notre aper=E7u.<br />
<img  src="http://image.jeuxvideo.com/imgnl/puce2.gif" />
<a href=http://www.jeuxvideo.com/articles/0001/00010524-gi-joe-preview.ht=
m?cmpid=C03-200309atxt>Aper&ccedil;u <img  style="width: 40px; height: =
15px;" alt="27" src="http://image.jeuxvideo.com/pics/p3.gif" border="=
0" /></a>
<img  src="http://image.jeuxvideo.com/imgnl/sepv.gif" />
<a href=http://www.jeuxvideo.com/articles/0001/00010523-gi-joe-preview.ht=
m?cmpid=C03-200309atxt>Aper&ccedil;u <img  style="width: 40px; height: =
15px;" alt="26" src="http://image.jeuxvideo.com/pics/x3.gif" border="=
0" /></a>
</font></td></tr><tr><td><font size="2"><strong><font color="#CC0000">M=
YSIMS RACING</font></strong><br/>
MySims quitte l'=E9tabli pour l'atelier de m=E9canique.<br />
<img  src="http://image.jeuxvideo.com/imgnl/puce2.gif" />
<a href=http://www.jeuxvideo.com/articles/0001/00010509-mysims-racing-pre=
view.htm?cmpid=C03-200309atxt>Aper&ccedil;u <img  style="width: 40px; h=
eight: 15px;" alt="25" src="http://image.jeuxvideo.com/pics/wii.gif" bo=
rder="0" /></a>
</font></td></tr><tr><td><font size="2"><strong><font color="#CC0000">A=
RMY OF TWO : LE 40=C8ME JOUR</font></strong><br/>
D=E9couvrez plus en d=E9tail la suite d'Army of Two dans notre aper=E7u !<b=
r />
<img  src="http://image.jeuxvideo.com/imgnl/puce2.gif" />
<a href=http://www.jeuxvideo.com/articles/0001/00010505-army-of-two-le-40=
eme-jour-preview.htm?cmpid=C03-200309atxt>Aper&ccedil;u <img  style="wi=
dth: 40px; height: 15px;" alt="27" src="http://image.jeuxvideo.com/pics=
/p3.gif" border="0" /></a>
<img  src="http://image.jeuxvideo.com/imgnl/sepv.gif" />
<a href=http://www.jeuxvideo.com/articles/0001/00010505-army-of-two-le-40=
eme-jour-preview.htm?cmpid=C03-200309atxt>Aper&ccedil;u <img  style="wi=
dth: 40px; height: 15px;" alt="26" src="http://image.jeuxvideo.com/pics=
/x3.gif" border="0" /></a>
</font></td></tr><tr>
<td><img  src="http://image.jeuxvideo.com/imgnl/puce.gif" /> <a href="h=
ttp://www.jeuxvideo.com/previews.htm?cmpid=C03-200309atxt"><font size="=
2"><strong>Voir tous les aper&ccedil;us sur jeuxvideo.com</strong></font></=
a></td>
</tr>
</table>
</td>
</tr><tr>
<td         background="http://image.jeuxvideo.com/imgnl/fond_t1.gif"><im=
g  src="http://image.jeuxvideo.com/imgnl/titre_dossiers.gif" width="85"=
 height="10" hspace="5" vspace="5" /></td>
</tr>
<tr>
<td bgcolor="#F2F5F7">
<table width="505" border="0" cellpadding="0" cellspacing="10">
<tr><td><font size="2"><strong><font color="#CC0000">Wii : les 5 raison=
s du succ=E8s</font></strong><br />
Pour quelles raisons la Wii est =E0 ce jour, la console de salon num=E9ro 1=
 des ventes ?<br />
<img  src="http://image.jeuxvideo.com/imgnl/puce2.gif" />
<a href=http://www.jeuxvideo.com/articles/0001/00010392_dossier.htm?cmpid=
=C03-200309ztxt>Dossier
<img  style="width: 40px; height: 15px;" alt="25" src="http://image.j=
euxvideo.com/pics/wii.gif" border="0" />  </a>
</font></td></tr><tr>
<td><img  src="http://image.jeuxvideo.com/imgnl/puce.gif" /> <a href="h=
ttp://www.jeuxvideo.com/dossiers.htm?cmpid=C03-200309ztxt"><font size="=
2"><strong>Voir tous les dossiers sur jeuxvideo.com</strong></font></a></td=
>
</tr>
</table>
</td>
</tr><tr>
<td         background="http://image.jeuxvideo.com/imgnl/fond_t1.gif"><im=
g  src="http://image.jeuxvideo.com/imgnl/titre_soluces.gif" width="79" =
height="10" hspace="5" vspace="5" /></td>
</tr>
<tr>
<td bgcolor="#F2F5F7">
<table width="505" border="0" cellpadding="0" cellspacing="10">
<tr><td><font size="2"><strong><font color="#CC0000">Saints Row 2</font=
></strong><br />
Place =E0 l'action totale dans Saints Row 2, le GTA-like qui ne se prend pa=
s au s=E9rieux.<br />
<img  src="http://image.jeuxvideo.com/imgnl/puce2.gif" />
<a href="http://www.jeuxvideo.com/cheats/00018551/trucs-et-astuces-saints=
-row-2-playstation-3-ps3.htm?cmpid=C03-200309ytxt">Solution
<img  style="width: 40px; height: 15px;" alt="27" src="http://image.j=
euxvideo.com/pics/p3.gif" border="0" /></a>
<img  src="http://image.jeuxvideo.com/imgnl/sepv.gif" />
<a href="http://www.jeuxvideo.com/cheats/00018552/trucs-et-astuces-saints=
-row-2-xbox-360.htm?cmpid=C03-200309ytxt">Solution
<img  style="width: 40px; height: 15px;" alt="26" src="http://image.j=
euxvideo.com/pics/x3.gif" border="0" /></a>
<img  src="http://image.jeuxvideo.com/imgnl/sepv.gif" />
<a href="http://www.jeuxvideo.com/cheats/00023067/trucs-et-astuces-saints=
-row-2-pc.htm?cmpid=C03-200309ytxt">Solution
<img  style="width: 40px; height: 15px;" alt="2" src="http://image.je=
uxvideo.com/pics/pc.gif" border="0" /></a>
</font></td></tr></table>
</td>
</tr></table>
</td>
<td>&nbsp;</td>
<td width="130" valign="top" bgcolor="#E85C00"><img  src="http://im=
age.jeuxvideo.com/imgnl/titre_boutique.gif" width="130" height="20" />=

<table width="130" border="0" cellspacing="0" cellpadding="10">
<tr><td align="center">
<a href="http://www.jeuxvideo.com/boutique/redirect.php?ID=00001458&Url=
=http%3A%2F%2Fwww.amazon.fr%2Fexec%2Fobidos%2FASIN%2FB001DF7JHS%2Fjeuxvid=
eo_newsletter-21"><img  src="http://image.jeuxvideo.com/images_amazon/ama=
zon_B001DF7JHS_petit.jpg" border="0" alt="&nbsp;" />
<img  src="http://image.jeuxvideo.com/pics/p3.gif" vspace="3" border==
"0" align="middle" alt="&nbsp;" /> <font color="#FFFFFF" size="3"><=
strong>23.85 &euro;</strong></font></a>
</td></tr>
<tr><td align="center" bgcolor="#ED8618">
<a href="http://www.jeuxvideo.com/boutique/redirect.php?ID=00001458&Url=
=http%3A%2F%2Fwww.amazon.fr%2Fexec%2Fobidos%2FASIN%2FB001KCYIJ6%2Fjeuxvid=
eo_newsletter-21"><img  src="http://image.jeuxvideo.com/pubs/newsletter/a=
mazon_B001KCYIJ6.jpg" border="0" alt="&nbsp;" />
<img  src="http://image.jeuxvideo.com/pics/p3.gif" vspace="3" border==
"0" align="middle" alt="&nbsp;" /> <font color="#FFFFFF" size="3"><=
strong>59.99 &euro;</strong></font></a>
</td></tr>
<tr><td align="center">
<a href="http://www.jeuxvideo.com/boutique/redirect.php?ID=00001458&Url=
=http%3A%2F%2Fwww.amazon.fr%2Fexec%2Fobidos%2FASIN%2FB001LOG1FC%2Fjeuxvid=
eo_newsletter-21"><img  src="http://image.jeuxvideo.com/pubs/newsletter/a=
mazon_B001LOG1FC.jpg" border="0" alt="&nbsp;" />
<img  src="http://image.jeuxvideo.com/pics/pc.gif" vspace="3" border==
"0" align="middle" alt="&nbsp;" /> <font color="#FFFFFF" size="3"><=
strong>42.99 &euro;</strong></font></a>
</td></tr>
<tr><td align="center" bgcolor="#CC0000"><strong><font color="#FFFFFF=
" size="2">T&eacute;l&eacute;chargement</font></strong></td></tr>
<tr><td align="center" bgcolor="#ED8618">
<a href="http://www.jeuxvideo.com/boutique/redirect.php?ID=00002004&Url=
=http%3A%2F%2Fwww.dlgamer.com%2Fbuy-command_conquer_alerte_rouge_3_la_rev=
olte_uprising_-telechargement-p-4871.html%3Faffil%513036722%26typnews%n=
ewsletters%396"><img  src="http://image.jeuxvideo.com/images_amazon/nex=
way_4871.jpg" border="0" alt="&nbsp;" />
<img  src="http://image.jeuxvideo.com/pics/pc.gif" vspace="3" border==
"0" align="middle" alt="&nbsp;" /><font color="#FFFFFF" size="3"> <=
strong>19.90 &euro;</strong></font></a>
</td></tr>
<tr><td align="center">
<a href="http://www.jeuxvideo.com/boutique/redirect.php?ID=00002004&Url=
=http%3A%2F%2Fboonty.jeuxvideo.com%2Ftelecharger%2Falabama-smith.html%3Ft=
rackercode%NLJV%26cid%Alabama%26tid%newsletter"><img  src="http://i=
mage.jeuxvideo.com/pubs/newsletter/alabama.jpg" border="0" alt="&nbsp;"=
 />
<img  src="http://image.jeuxvideo.com/pics/pc.gif" vspace="3" border==
"0" align="middle" alt="&nbsp;" /><font color="#FFFFFF" size="3"> <=
strong>Gratuit</strong></font></a>
</td></tr>
</table>
</td>
</tr>
</table>
</td>
</tr><tr>
<td>
<table width="645" border="0" cellpadding="0" cellspacing="0">
<tr>
<td         background="http://image.jeuxvideo.com/imgnl/fond_t1.gif"><im=
g  src="http://image.jeuxvideo.com/imgnl/titre_videos.gif" width="70" h=
eight="10" hspace="5" vspace="5" /></td>
</tr>
<tr>
<td bgcolor="#F2F5F7">
<table width="100%%" border="0" cellspacing="0" cellpadding="10">=

<tr>
<td width="290" valign="top" bgcolor="#E6E8E8"><font color="#CC0000=
" size="2"><strong>Gaming Live &agrave; la une&nbsp;:</strong></font><br =
/>
<table width="290" border="0" cellspacing="0" cellpadding="0">
<tr><td><img  src="http://image.jeuxvideo.com/imgnl/player1b.gif" alt="=
" width="290" /></td></tr>
<tr><td align="center" bgcolor="#3A3A3A"><a href="http://www.jeuxvide=
o.com/gaming_live/0000/00002400/sonic_et_le_chevalier_noir_f1q0.htm?cmpid=
=C03-200309gimg"><img  src="http://image.jeuxvideo.com/gaming_live_imag=
es/200903/sonic_et_le_chevalier_noir_wii-00002400-low.jpg" width="280" bo=
rder="0" /></a></td></tr>
<tr><td><a href="http://www.jeuxvideo.com/gaming_live/0000/00002400/sonic=
_et_le_chevalier_noir_f1q0.htm?cmpid=C03-200309gimg"><img  src="http://=
image.jeuxvideo.com/imgnl/player2b.gif" alt="" width="290" border="0=
" /></a></td></tr></table>
<font size="2"><a href="http://www.jeuxvideo.com/gaming_live/0000/00002=
400/sonic_et_le_chevalier_noir_f1q0.htm?cmpid=C03-200309gtxt"><strong>Son=
ic et le Chevalier Noir</strong> 
</a><br />Dans ce gaming live de Sonic et le Chevalier Noir sur Wii, on vou=
s explique pourquoi le jeu, en d=E9pit de ses bonnes inte...<br />
<strong>Dur&eacute;e : 8'05''</strong> </font></td>
<td valign="top"><font size="2"><font color="#CC0000"><strong>Dernier=
s Gaming Live&nbsp;:</strong></font><br />- Exit 2 - Xbox 360<br />
- MadWorld - 1/2 : Le quartier asiatique s'anime - Wii<br />
- MadWorld - 2/2 : Des mini-jeux sanglants - Wii<br />
- Mr Bean : Total D=E9lire sur Wii - Wii<br />
- Mr Bean : Total D=E9lire sur Wii - Wii<br />
- Sonic et le Chevalier Noir - Wii<br />
<img  src="http://image.jeuxvideo.com/imgnl/puce.gif" /> <a href="http:=
//www.jeuxvideo.com/gaming_live.htm?cmpid=C03-200309gtxt"><strong>Tous le=
s Gaming Live sur jeuxvideo.com<br />
<br />
</strong></a></font><font size="2"><font color="#CC0000"><strong>Derni&=
egrave;res vid&eacute;os &eacute;diteurs&nbsp;:</strong></font><br />- Cham=
pions Online - Bienvenue =E0 Lemuria - PC<br />
- Ether Saga Online - Trailer de lancement - PC<br />
- Vanilla Gate - Une bataille color=E9e - PC<br />
- Lux-Pain - Mise en ambiance - Nintendo DS<br />
- Still Life 2 - Deux h=E9ro=EFnes pour une seule enqu=EAte - PC<br />
- Les Chevaliers de Baphomet : The Director's Cut - Trailer de lancement - =
Wii<br />
<img  src="http://image.jeuxvideo.com/imgnl/puce.gif" /> <a href="http:=
//www.jeuxvideo.com/videos.htm?cmpid=C03-200309vtxt"><strong>Toutes les v=
id&eacute;os &eacute;diteurs sur jeuxvideo.com</strong></a></font></td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr><tr>
<td>
<table width="645" border="0" cellpadding="0" cellspacing="0">
<tr>
<td         background="http://image.jeuxvideo.com/imgnl/fond_t1.gif"><im=
g  src="http://image.jeuxvideo.com/imgnl/titre_downloads.gif" width="72=
" height="10" hspace="5" vspace="5" /></td>
</tr>
<tr>
<td bgcolor="#F2F5F7">
<table width="100%%" border="0" cellpadding="10" cellspacing="0">=

<tr>
<td width="50%%" valign="top"><font size="2"><font color="#CC0000">=
<strong>Derniers jeux complets et d=E9mos&nbsp;:</strong></font><br />- La =
Tale, 59 Mo<br />
- Football Challenge, 32 Mo<br />
- Wallace & Gromit's Grand Adventures - Episode 1 : Fright of the Bumblebee=
s, 138 Mo<br />
- Dungeon Party, 420 Mo<br />
- Hysteria Hospital : Emergency Ward, 74 Mo<br />
- The Maw, 191 Mo<br />
<img  src="http://image.jeuxvideo.com/imgnl/puce.gif" /> <a href="http:=
//www.jeuxvideo.com/demos.htm?cmpid=C03-200309dtxt"><strong>Toutes les d&=
eacute;mos sur jeuxvideo.com</strong></a><br />
</font></td>
<td width="50%%" valign="top"><font size="2"><font color="#CC0000">=
<strong>Derniers patches&nbsp;:</strong></font><br />- Tom Clancy's EndWar,=
 19 Mo<br />
- Tom Clancy's HAWX, 38 Mo<br />
- NecroVisioN, 23 Mo<br />
- Civilization IV : Colonization, 23 Mo<br />
- World in Conflict, 997 Mo<br />
- Command & Conquer : Alerte Rouge 3, 174 Mo<br />
<img  src="http://image.jeuxvideo.com/imgnl/puce.gif" /> <a href="http:=
//www.jeuxvideo.com/patches.htm?cmpid=C03-200309ptxt"><strong>Tous les pa=
tches sur jeuxvideo.com</strong></a></font></td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr><tr>
<td align="center"><font size="2" face="Arial, Helvetica, sans-serif"=
> <strong>A bient&ocirc;t sur <a href="http://www.jeuxvideo.com/?cmpid==
C03-200309btxt">jeuxvideo.com</a> !</strong></font></td>
</tr>
<tr>
<td height="30" bgcolor="#DFDFDF">
<p align="center"><font size="1" face="Verdana, Arial, Helvetica, san=
s-serif"><strong>La r&eacute;daction &copy; <a href="http://www.odyssee-i=
nteractive.com/">L'Odyss&eacute;e Interactive jeuxvideo.com</a><br />
Pour vous d&eacute;sabonner, <a href="http://www.jeuxvideo.com/cgi-bin/ms=
ignin.cgi?cmpid=C03-200309btxt&action=unsubscribe">cliquer ici</a></str=
ong> </font></p>
</td>
</tr>
</table>
</body>
</html>

gnozal
Messages : 832
Inscription : mar. 07/déc./2004 17:35
Localisation : France
Contact :

Message par gnozal »

poshu a écrit :Edit: ah, non, y'a des =0D et des 3D qui font je sais pas trop quoi là...
J'ai mis à jour la librairie en ajoutant un décodage des caractères spéciaux (=XX) pour les textes du type "text/html" (c'était déjà fait pour les "text/plain")... çà devrait aussi régler le problème des liens des images.

La soi-disante norme POP3 est un vrai merdier, chaque client mail encodant les textes et/ou pièces jointes différemment ...!
Avatar de l’utilisateur
Le psychopathe
Messages : 764
Inscription : jeu. 03/mars/2005 19:23

Message par Le psychopathe »

gnozal a écrit :
poshu a écrit :Edit: ah, non, y'a des =0D et des 3D qui font je sais pas trop quoi là...
J'ai mis à jour la librairie en ajoutant un décodage des caractères spéciaux (=XX) pour les textes du type "text/html" (c'était déjà fait pour les "text/plain")... çà devrait aussi régler le problème des liens des images.

La soi-disante norme POP3 est un vrai merdier, chaque client mail encodant les textes et/ou pièces jointes différemment ...!
Merci pour la rapidité de réaction ;)
Bon il y a du positif et du negatif :
Je recois bien les mails sauf sauf sauf pour celui du dessus mdr les mail venant de jeuxvideo.com ne passe pas du tout explication :

Je lance le code (RUN)
La console debug s'affiche
Mon antivirus me dit analyse du mail entrant aucun soucis
Mais la fenetre avec le web gadget ne s'affiche pas donc je pense qu'il reste bloquer dans l'analyse des caractères sachant que cela doit être en unicode ces mails.

voilà le debug et après rien d'autre :

Code : Tout sélectionner

Connected
You have 1 messages(s)
Message(s) total size : 169534 bytes
Message 1 size : 169534 bytes
Retrieve message 1
--------------
Message info : Delivery-date: Sat, 21 Mar 2009 11:25:10 +0100	Subject: Fw: Lettre d'information - 20 mars 2009	From: "xxxxxxxx" <xxxxxx@free.fr>	Attachements:0	Length:173183
Les xxxxx c'est moi, je ne met pas d'adresse mail sur les forum ;)
Si tu veux je peux t'envoyer le mail en question
gnozal
Messages : 832
Inscription : mar. 07/déc./2004 17:35
Localisation : France
Contact :

Message par gnozal »

J'ai essayé avec le code HTML que tu as posté précédement et aucun blocage ici.
Tu peux préciser le problème ? Le programme ne se termine pas ?
Le psychopathe a écrit :Si tu veux je peux t'envoyer le mail en question
Il me faudrait les dumps créés par PurePOP3 :
1. Activer le mode debug : PurePOP3_Trace(#True) au début du code.
2. Poster les fichiers PurePOP3-DEBUG*.txt (en enlevant les mots de passe éventuels mais sans en changer la structure).
Répondre