Ignore:
Timestamp:
Aug 3, 2012, 6:07:42 PM (12 years ago)
Author:
mistic100
Message:

remove useless Quoted-Printable-Encode for mails

File:
1 edited

Legend:

Unmodified
Added
Removed
  • extensions/Subscribe_to_comments/include/functions.inc.php

    r16105 r17350  
    504504  $headers.= 'MIME-Version: 1.0'."\n";
    505505  $headers.= 'X-Mailer: Piwigo Mailer'."\n";
    506   $headers.= 'Content-Transfer-Encoding: Quoted-Printable'."\n";
     506  // $headers.= 'Content-Transfer-Encoding: Quoted-Printable'."\n";
     507  $headers.= 'Content-Transfer-Encoding: 8bit'."\n";
    507508  $headers.= 'Content-Type: text/html; charset="'.get_pwg_charset().'";'."\n";
    508509 
     
    522523  $content = $template->parse('stc_mail_header', true) . $content . $template->parse('stc_mail_footer', true);
    523524 
    524   $content = quoted_printable_encode($content);
     525  // $content = quoted_printable_encode($content);
    525526  $content = wordwrap($content, 70, "\n", true);
    526527
Note: See TracChangeset for help on using the changeset viewer.