htmlMimeMail - Mail subjects with german umlauts

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Markus Weber

    htmlMimeMail - Mail subjects with german umlauts

    Hi,

    we use htmlMimeMail-2.5.1 (http://www.phpguru.org/mime.mail.html) to send
    mails.

    If I send an e-mail with the subject
    "Das Öl - Öl Öl - Ö Ä Ü ß - test test" I will receive an e-mail with the
    subject
    "Das Öl - ÖlÖl - ÖÄÜß - test test". Some spaces have been removed.

    Within the mail text I have no problems with german umlauts. Only in the
    subject.

    Does anybody know a solution?

    A modified version of the script is used in tikiwiki (http://tikiwiki.org/).
    Does it work there?

    bye,
    Markus

    --
    Pleasy reply to the newsgroup.
    Please remove the _spam from my e-mail adress if you send me an e-mail


  • Manuel Lemos

    #2
    Re: htmlMimeMail - Mail subjects with german umlauts

    Hello,

    On 10/27/2003 07:22 AM, Markus Weber wrote:[color=blue]
    > we use htmlMimeMail-2.5.1 (http://www.phpguru.org/mime.mail.html) to send
    > mails.
    >
    > If I send an e-mail with the subject
    > "Das Öl - Öl Öl - Ö Ä Ü ß - test test" I will receive an e-mail with the
    > subject
    > "Das Öl - ÖlÖl - ÖÄÜß - test test". Some spaces have beenremoved.
    >
    > Within the mail text I have no problems with german umlauts. Only in the
    > subject.
    >
    > Does anybody know a solution?[/color]

    You may want to try this other class that can be used to send messages
    with umlaut characters in the subject or other headers or the message
    body without any problems:



    --

    Regards,
    Manuel Lemos

    Free ready to use OOP components written in PHP


    Comment

    • Markus Weber

      #3
      Re: htmlMimeMail - Mail subjects with german umlauts

      Hi Manuel,
      [color=blue][color=green]
      > > we use htmlMimeMail-2.5.1 (http://www.phpguru.org/mime.mail.html) to
      > > send
      > > mails.
      > >
      > > If I send an e-mail with the subject
      > > "Das Öl - Öl Öl - Ö Ä Ü ß - test test" I will receive an e-mail with the
      > > subject
      > > "Das Öl - ÖlÖl - ÖÄÜß - test test". Some spaces have been removed.
      > >
      > > Within the mail text I have no problems with german umlauts. Only in the
      > > subject.
      > >
      > > Does anybody know a solution?[/color]
      >
      > You may want to try this other class that can be used to send messages
      > with umlaut characters in the subject or other headers or the message
      > body without any problems:
      >
      > http://www.phpclasses.org/mimemessage
      >[/color]

      I use your class now. Umlauts can be used without problems in the subject.

      Can I pass an HTML-Part which I have created with
      CreateQuotedPri ntableHTMLPart ($html_part) to the AddAlternativeM ultipart
      function? It seems to work.
      [color=blue]
      >
      > Regards,
      > Manuel Lemos
      >[/color]

      bye,
      Markus



      Comment

      • Manuel Lemos

        #4
        Re: htmlMimeMail - Mail subjects with german umlauts

        Hello,

        On 11/03/2003 07:47 AM, Markus Weber wrote:[color=blue][color=green][color=darkred]
        >>>we use htmlMimeMail-2.5.1 (http://www.phpguru.org/mime.mail.html) to
        >>>send
        >>>mails.
        >>>
        >>>If I send an e-mail with the subject
        >>>"Das Öl - Öl Öl - Ö Ä Ü ß - test test" I will receive ane-mail with the
        >>>subject
        >>>"Das Öl - ÖlÖl - ÖÄÜß - test test". Some spaces have been removed.
        >>>
        >>>Within the mail text I have no problems with german umlauts. Only in the
        >>>subject.
        >>>
        >>>Does anybody know a solution?[/color]
        >>
        >>You may want to try this other class that can be used to send messages
        >>with umlaut characters in the subject or other headers or the message
        >>body without any problems:
        >>
        >>http://www.phpclasses.org/mimemessage
        >>[/color]
        >
        >
        > I use your class now. Umlauts can be used without problems in the subject.
        >
        > Can I pass an HTML-Part which I have created with
        > CreateQuotedPri ntableHTMLPart ($html_part) to the AddAlternativeM ultipart
        > function? It seems to work.[/color]

        Yes, actually you should always have an alternative text part for each
        HTML part. They must be added by the correct order or else HTML capable
        mail programs will show the text part instead of the HTML part. Just
        take a look at the supplied example to compose HTML messages.


        --

        Regards,
        Manuel Lemos

        Free ready to use OOP components written in PHP


        Comment

        Working...