I\'m tying extract some content of some equal emails with php but I can\'t.
With that:
$body = imap_body($imap_o, $email_n);
I get:
and maybe you could set the file encoding. in dw, ctrl+j, title encoding settings, utf8 without bom. or notepad2, file > encoding > utf8
Try
$body = utf8_encode(quoted_printable_decode($body));