? character in e-mails

Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.

  1. #1

    Default ? character in e-mails

    Hi,

    I have just set up a site which sends out two e-mails when an order is placed
    (one to the customer via cfmail and one to the client via ASP Mail & ASP
    Encrypt (using cfhttp)).

    However in the e-mails my client receives (including customer ones when they
    do a test) all of the poud sign (?) characters have an ? character infront of
    them, e.g.:

    Product: Spy Shirt (Mens) (Colour: Royal/Black, Size: M)
    Quantity: 1
    Price: ??29.99 (Unit: ??29.99)

    However when I do a test on my computer and I receive the customer e-mail its
    fine and has no ? characters, e.g.:

    Product: Air jacket (Mens) (Colour: Grey, Size: XL)
    Quantity: 1
    Price: ?80.00 (Unit: ?80.00)

    This makes me think that its a problem with their computer and not the script
    which sends the e-mails, but how do i stop these characters appearing on their
    computer, and stop them appearing on anyone elses who might have the same
    problem?

    Thanks for your help,

    Jack

    Jak-S Guest

  2. Similar Questions and Discussions

    1. InDesign ME Character Problem! Character-Change by Printing or saving *.PS!
      Hi everybody! I have some problems with ME Version. When i want to print a page with FARSI-Text in it, he changes one character! on screen he...
    2. restructure mails
      in unix, the mails are going to the /var. understood that we could actually restructure this. this is because, our print spool is going to this...
    3. Bouncing mails
      Al Kaibala DO YOU READ THIS? List members, As administrator of the Linux SIG List, I am getting bounces for mail addressed to kabalg@localhost...
    4. Mails
      Oeps, this was not supposed to be posted here, sorry. Just ignore this. Coen Coen Naninck wrote:
    5. mail() sending mails twice to the e-mails addresses at BCC
      Hi there! As I explained yesterday I am developing a group of pages to let users send mails from them. For that I am using the mail() function....
  3. #2

    Default Re: ? character in e-mails

    what encoding are using? is it something the client's mail reader can handle? is it something those ASP bits can handle (or do you see that email)?

    PaulH Guest

  4. #3

    Default Re: ? character in e-mails

    Hi,
    Im not setting any specific encoding in any of the scripts. It shoudlnt be
    anything unusual. This is what it says in the header of the customers e-mail
    that i received when i did the test:

    Content-Type: text/plain; charset=UTF-8
    Content-Transfer-Encoding: quoted-printable

    It it looks fine on my computer. But both e-mails appear incorrectly on their
    PC, their using Outlook Express.

    Maybe the default encoding/char set on their compuer is set up wrong? Im
    guessing here, dont really know that much about this subject.

    Would setting the charset attribute of cfmail to utf-8 fix it? Is there a way
    to do it in ASP?

    Thanks,

    Jack

    Jak-S Guest

  5. #4

    Default Re: ? character in e-mails

    well it's always a good idea to providing encoding hints. try adding charset
    option (as utf-8) to your cfmail and cfhttp calls. and do the ASP bits support
    unicode?

    if utf-8 still causes problems try windows "latin-1" code page (cp1252) or
    latin-1 (ISO8859-1). if you think you'll have to use the euro use latin-9
    (iso8859-15) instead.

    that should help the client get the encoding right.


    PaulH Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139