
 Andreas Schosser - 2008-03-17 10:38:07 - 
In reply to message 2 from Manuel Lemos 
Hi Manuel,
what do you think of my solution to specify encoding at runtime (as in AddQuotedPrintableTextPart):
  Function SetEncodedHeader($header,$value, $charset)
  {
    // patch to specify encoding at runtime
    if (!charset) {
      $charset = $this->default_charset;
    }
    return($this->SetHeader($header,$value, $charset));
  }
It's a great class.
Thank you,
Andreas