Help for this page

Select Code to Download


  1. or download this
        my @emails = split /\n/, q|foo <andy@bar.com>
    =?utf-8?B?UGF1c2UgRG9yw6ll?= <pausedoree@gggg.com>
    ...
                print "\n\n";
    
        }
    
  2. or download this
    FOO: foo <andy@bar.com>
    Content-type: text/html; charset=iso-8859-1
    
    ...
    convert..
    $VAR1 = "Ancie chambres d'h\x{f4}tes <ancie.ha\@dfdd.fr>";
    FOO: 1
    
  3. or download this
                $_ = decode('MIME-Header', $_);
    
  4. or download this
        if (utf8::is_utf8($the_from)) {
            $the_from = encode('iso-8859-1', $_);
        }