Chinese ideogram in my mail !

I do not notice this before 10.4, but now with 10.4 and 10.5 (a small mac equipped company), we got some troubles with our emails.
Some customers complain, our emails are full of gremlins characters : some got sort of chinese ideogram replacing accent character (we're french so we used characters like é, è, ê, ç, ô and so on...
For the vast majority of our contacts it works fine but some got those characters replaced.
I made some tests and i found that converting our mail to "raw text" resolve this problem, but our mail look so bad and i can't ask my co-corkers to use only raw text or convert just before sending there mail : we're using mac for rich graphics not old'70 text style...
My investigation point that the problem appears with some Outlook/Windows configuration and also with some webmail services.
But i found no solution at that time (except the bad raw text conversion).

It's likely that the problem is that the recipients are using a font which does not include the characters with diacriticals. If you are specifying the font in the message, and you choose one which a recipient doesn't happen to have, then his computer will substitute a font and may possibly not be able to reproduce these characters. As with web pages, you need to stick to the handful of common fonts such as Helvetica, Arial, TImes and so on which everyone has.

Similar Messages

  • Chinese problem in Java Mail "Subject"

              I got a problem in displaying the Chinese mail subject as described below
              1. here is the code
              Message msg = new MimeMessage(session);
              msg.setFrom(new InternetAddress(from));
              msg.setRecipient(Message.RecipientType.TO, new InternetAddress(to));
              msg.setSubject(subject);
              msg.setSentDate(new Date());
              msg.setContent(content, "text/plain");
              Transport.send(msg);
              2. My env is
              Windows 2000
              weblogic 7
              3. My problem is
              the chinese character in the mail context is OK but the subject in the mail is
              like this "?????"
              Can someone give me the clue ? Thanks a lots
              

    You need to be identified by stmp server :
    // Send message with authentication!
    Transport tr = session.getTransport("smtp");
    tr.connect(MailHost, user, pass);
    message.saveChanges(); // don't forget this
    tr.sendMessage(message, message.getAllRecipients());
    tr.close();
    Read JavaMail Faq please!

  • I would like to use Chinese input during my mail,what should I do?

    I would like to use Chinese input during my mail,what should I do?

    You can set up international keyboards:
    Settings > General > Keyboard > International Keyboards > Add new Keyboard.  There are a variety of Chinese keyboards available.

  • Letter with accent transformed into chinese ideograms

    When I digit a letter with an accent  (such as è, ò, à, which are quite common in the Italian vocabulary) into an email, the addressee receive the email with those characters transformed into chinese ideograms.
     Is there any solution?

    hello,
    for question 1) you didn't match Bifocals' expectations. If it had been english for example, it would have been a quite serious problem to have strange characters
    for question 2), well I guess Bifocals has no clue on what that email provider is (neither do I anyway).
    now, for my part : I think there is a discrepancy between the character encoding you are using and the one that is used by your recipient. When you send an email to yourself with some è à or ò : do you receive them correctly ?
    when people send you those characters, do you see them correctly ?
    The search box on top-right of this page is your true friend, and the public Knowledge Base too:

  • Problem with chinese characters while sending mail with .CSV attachment

    Hi,
    i am sendin .CSV file as an attachment with mail using "SO_DOCUMENT_SEND_API1" FM,
    whle opening the mail attachment the chinese characters are not displaying properly.
    currently i am using ECC 5.0
    can any body help in this regard.
    Thanks,
    Rahim

    Hi Kang Ring,
    please convert the content of the attachement into the binary format and then add it as a mail attachment.
    LOOP AT i_data ASSIGNING <wa_data>.
    if s_output is INITIAL.
    CONCATENATE <wa_data> cl_abap_char_utilities=>cr_lf into s_output.
    else.
    CONCATENATE s_output <wa_data> INTO s_output SEPARATED BY cl_abap_char_utilities=>cr_lf.
    endif.
    ENDLOOP.
    CALL FUNCTION 'SCMS_STRING_TO_XSTRING'
    EXPORTING
    text = s_output
    IMPORTING
    buffer = x_output.
    CALL FUNCTION 'SCMS_XSTRING_TO_BINARY'
    EXPORTING
    buffer = x_output
    TABLES
    binary_tab = imail_att.
         OR
    please use ABAP-Object classes like CL_BCS , CL_document_BCS.....
    please findthe below sample code.
      cl_bcs_convert=>string_to_solix(
              EXPORTING
                iv_string   = s_output
                iv_codepage = '4103'          "suitable for MS Excel, leave empty
                iv_add_bom  = 'X'               "for other doc types
              IMPORTING
                et_solix  = s_output_binary  "(of type solix_tab)
                ev_size   = size ).
    attachment->add_attachment(                       "attachment of type ref to cl_document_bcs
              i_attachment_type    = 'xls'                     
              i_attachment_subject = l_subject    
              i_attachment_size    = size
              i_att_content_hex    = s_output_binary ).
    you need to write the code for adding the receipents, subject and adding this "attachment " as an attachment to the mail.
    Hope this will helps to you....,
    thanks,
    Rahim.

  • Chinese characters merging in Mail PDF attachment

    Hi,  I am coverting the ouput of transaction S_ALR_87012976 for a change number into PDF and sending through mail. This is OK for all languages but for Chinese I can see the characters properly but lower row characters are merging with upper row characters. Means I can see the chinese caracters but the missing the format or very few times I am gettin # as chinese characters. I am doing the below things to do this job, suggest me if I am wrong any where.
    Creating the spool with the report output using SUBMIT program   
    SUBMIT rcc00130 WITH SELECTION-TABLE zscreen TO SAP-SPOOL
                            SPOOL PARAMETERS g_print_parameters
                            WITHOUT SPOOL DYNPRO
                            VIA JOB g_name NUMBER g_number
                            AND RETURN.
    I am converting the spool to PDF using FM 'CONVERT_ABAPSPOOLJOB_2_PDF' then for 255 character allignment I am using below FM
        CALL FUNCTION 'SX_TABLE_LINE_WIDTH_CHANGE'
          EXPORTING
            line_width_src              = '134'
            line_width_dst              = '255'
          TABLES
            content_in                  = i_pdf[]
            content_out                 = it_mess_att[]
    Then using FM 'SO_NEW_DOCUMENT_ATT_SEND_API1' I am sending the mail.
        CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
          EXPORTING
            document_data              = s_doc_data
            put_in_outbox              = 'X'
            commit_work                = 'X'
          TABLES
            packing_list               = i_objpack
            contents_txt               = i_objtxt
            contents_bin               = it_mess_att
            receivers                  = i_reclist

    Hi Avinash,
    Thanks for the reply. In my system (ECC 6.0) I am not seeing the devicetype as you mentioned but I passed one of chinese device type ZHANWIN in print parameters of SUBMIT for creating spool but issue not resolved. Is there any other way??

  • How to send messages in Chinese via FIOS e-mail

    My wife was previously able to write messages in Chinese on her I-Pad and send them via Comcast e-mail.  When she tries to do the same on our new FIOS account, the Chinese characters are lost and replaced with question marks.  Incoming Chinese messages are completely scrambled with nonsense characters.  How do we rectify this issue?

    Thanks for your comment.
    en....I want to do something..I will maintenance a users list
    in charroom.
    I write a function in main.asc file , client can get users
    list via call the function.
    I write some codes in application.onConnect
    when a user connect, it will add users list.
    In application.onDisconnect, when a user disconnect, it will
    remove from users list.
    My hope when a user disconnect, I send a message to
    shareobject. the shareobject is called in other clients.
    Other client can retrieve the remove user message, they will
    call the function to get new users list.
    It is my idea. Can you give me some codes for my idea?
    Thank you very much.

  • I can't type with Chinese Input Methods in Mail and Notes

    Today I suddenly can't type/input any word or character in Mail and Notes
    when the input method switches to any Chinese input method like Zhuyin, Yahoo KeyKey and Bopomofo.
    Even the cursor won't move when I press the " ↑↓←→"
    The keyboard just doesn't work from " ` " to "→" when it comes to Chinese input methods.
    However,
    the keyboard works well as soon as I switch to English input method and I can type English in Mail and Notes.
    I can type with any Chinese input methods in Chrome, TextEdit, Reminder, iPhoto, Contacts,......etc..
    Is there something wrong with Mail and Notes?
    Could anyone help me solve the problem?
    Thank you!

    Thank you, Tom.
    I have posted my issue there and hope for the best
    btw,
    I had the same problem (cannot input any word and move the cursor with Chinese input methods) in Evernote.
    Evernote Support helped me solve it.
    Here is how it works (for Evernote only).
    Ticket # 16051-XXXXX
    We believe that reinstalling the latest Mac version may address the issue that you reported. Please perform the following steps:
    Quit Evernote from the elephant icon in the Menu Bar
    Drag the Evernote application to the system Trash
    Reboot your Mac
    Download and install the latest version of the Mac client:
    http://www.evernote.com/about/download/get.php?file=EvernoteMac
    When you open the download, make sure to drag the Evernote icon into the Applications folder instead of running it from within the installer package.
    Eject the disk image and delete the installer file before you runEvernote.
    Let us know how this works for you.
    Thank you.
    Tania

  • Font Renders as Chinese in Safari and "Mail" applications

    certain fonts render as an eastern type font (completely unreadable) when using safari or the mail applications in ox 10.3.9.
    I have tried changing the appearance in the preferences but it makes no difference. Any help will be much appreciated!

    Often the cause of this is the font Helvetica Fractions. Get rid of it if you have it. Send me a screenshot if you want to verify this is the problem (click on my name for the address).

  • Use apple mail to send Chinese language have encoding problem

    When I sending a email with Chinese character, receiver received mail have decoding problem. How to solve the problem like this?
    Forward mail to third party same problem as above.

    JKWei wrote:
    . How to solve the problem like this?
    Before you send your email, go to Message > Text Encoding and choose one of the Chinese encodings, like GB for simplified and Big 5 for traditional.  You might have to try different ones, or UTF-8.

  • Chinese characters are displaying as squares in mail subject & content

    Hi when I am sending or receiving mail which is having Chinese characters in either mail subject or contents then some Chinese characters are appearing as squares.
    This issue is only coming on single system (Window XP, outlook 2007)

    Hello,
    Come back and mark the replies as answers if they help and unmark them if they provide no help.
    I'm marking the reply as answer as there has been no update for a couple of days.
    If you come back to find it doesn't work for you, please reply to us and unmark the answer.
    Cara Chen
    TechNet Community Support

  • How to read chinese in N97 Mini?

    I just bought it in the UK
    How can it read chinese in texting and web browsing?
    Any software can be installed to solve?

    Language support on Nokia phones is a bit of an embarrassment, to be honest. It's pretty hopeless.
    As an end user there's nothing you can do yourself. What you can do is take the phone to your nearest Nokia Care Point and ask them to install a Chinese language pack for you. This will give the phone support for Chinese ideograms, both for display and for input. However, please bear in mind that:
    1) Not all NCPs will do this for you. Some will claim that it's impossible, and indeed it may well be impossible if you got your phone from an operator rather than SIM-free from an independent retailer or direct from Nokia.
    2) You may well be charged for this. The absence of Chinese language support in a phone intended for the UK market is not a fault in the phone, so the warranty cannot be invoked.
    3) If you update the firmware at a later date, the chances are that this will wipe out the language pack that was installed and you'll have to have it installed again.
    Was this post helpful? If so, please click on the white "Kudos!" star below. Thank you!

  • Reply email with chinese characters become

    My colleagues sent an email with Chinese characters while I'm outside the office, so I replied it using my iPhone 4S with Chinese characters too.
    However, my colleagues (she is using Outlook) said the email that she received is not readable. All the Chinese characters become garbled.
    This issue also applied to iPad 2 because I again resent it using my iPad 2.
    Is there a way to overcome this issue? Otherwise, I cannot do my work when I'm away my desk.
    Pls help~

    If I create a new mail using my iPhone 4GS or iPad 2, I won't have the problem.
    This issue only applied when I reply or forward an email from my colleagues whoes emails contain Chinese characters. To avoid this issue, the only language I can use is typing English but some of my colleagues only understand Chinese.
    I believe this problem is an encolding issue too because this case also apply on the Mail in my MacBook Pro. But I can change my encoding to "Traditional Chinese - Big 5" on Mail in my MBP but iPhone & iPad don't have this function.
    The problem still there even I switched the OS language b/w English and Chinese.

  • Mail to teams/wiki fails on ascii decode

    I'm administering a OSX Server running some mailaccounts and some wikis. One of the user forwarded me this error he received on sending a mail to a wiki.
    This is the mail system at host <myhost>.
    I'm sorry to have to inform you that your message could not
    be delivered to one or more recipients. It's attached below.
    For further assistance, please send mail to postmaster.
    If you do so, please include this problem report. You can
    delete your own text from the attached returned message.
    The mail system
    <[email protected]> (expanded from
    <some-wiki@myhost>): Command died with status 1:
    "/usr/share/wikid/bin/bundleMail.py". Command output:
    /System/Library/Frameworks/Python.framework/Versions/2.6/Extras/lib/python/zope/_init_.py:1:
    UserWarning: Module twisted was already imported from
    /usr/share/caldavd/lib/python/twisted/_init_.pyc, but
    /System/Library/Frameworks/Python.framework/Versions/2.6/Extras/lib/python
    is being added to sys.path
    _import__('pkg_resources').declare_namespace(__name_)
    /usr/share/wikid/lib/python/twisted_overrides/microdom.py:176:
    SyntaxWarning: assertion is always true, perhaps remove parentheses?
    assert (oldChild.parentNode is self,
    /usr/share/wikid/lib/python/apple_utilities/MailBundler.py:10:
    DeprecationWarning: the md5 module is deprecated; use hashlib instead
    import md5 2011-03-18 22:31:55.182 wikimembership[47158:903] Starting
    rebuild of directoryACLIndex 2011-03-18 22:31:55.281
    wikimembership[47158:903] Done rebuilding directoryACLIndex Traceback (most
    recent call last): File "/usr/share/wikid/bin/bundleMail.py", line 35, in
    <module> bundleFromMessage(message) File
    "/usr/share/wikid/lib/python/apple_utilities/MailBundler.py", line 102, in
    bundleFromMessage aBundle.setContentFiltered(bundleContent) File
    "/usr/share/wikid/lib/python/apple_wlt/ContentEntry.py", line 333, in
    setContentFiltered d = DOMContentFilterBase.parse(content) File
    "/usr/share/wikid/lib/python/apple_wlt/DOMContentFilterBase.py", line 26,
    in parse dom = microdom.parseString(('<html>' + content +
    '</html>').encode('utf-8'), beExtremelyLenient=1,
    preserveSpace=1).documentElement UnicodeDecodeError: 'ascii' codec can't
    decode byte 0xe2 in position 3525: ordinal not in range(128)
    Looking into this and into the original email he was sending i found out that the python scripts struggle with some chinese characters within the mail body while converting the contents of that mail to become a wiki-entry.
    Searching these discussions led to quite interesting issues (nice to know - made myself some bookmarks) but it seems this issue has not been (dis)covered before.
    I will continue digging into this as it's a no-go but if anyone has a clue for me what setting to change or which file to tweak i'd be very thankful.

    I removed the src/ directory and ran makepkg and it succeeded. Pacman -U kernel.pkg.tar.gz also worked. Now all that's left is rebooting and trying.
    Thanks everyone.
    OK, I guess it's not over yet. I rebooted in the new kernel, but it says it can't find /dev/sda3 (which is my / partition).
    This is my grub entry:
    title Arch Linux Gigamo
    root (hd0,2)
    kernel /boot/vmlinuz26 root=/dev/sda3 ro
    initrd /boot/kernel26-gigamo.img
    Okay well, I didnt realise there was a vmlinux26-gigamo as well. Will see if that fixes it.
    Last edited by Gigamo (2008-03-12 16:53:22)

  • Cannot read chinese in gmail

    I have setup a gmail mailbox in my iPhone 3GS, however, Chinese characters inside the mail become symbol....
    Please advise how I can fix it. Thanks.

    Most likely it is an encoding problem, and there is no way to select Mail encodings on an iPhone. You could try switching your OS to Chinese, if it is not already that way.
    Does it work if you use webmail instead of Mail?

Maybe you are looking for

  • Stop Creation of Billing Document in Future date

    Hi Experts We create Billing Document in VF01 on basis of Outbound delivery, system create Billing Document in current date. but when we choose future date that time also system create billing Document l in future date . Issue : While create Billing

  • Video Controller Failure.

    After a couple of months of kernel panics, freezing, etc., a Hardware Test finally produced the sad conclusion that the NVIDIA 8600M GT video controller in my MBP had failed. This is the well documented fault that has been occurring since 2007/2008.

  • Need to create a report having 40 columns using XML Publisher

    Hi XML Report Gurus, I have a weird requirement. I need to create a XML Publisher Report having 40 columns. This report would be a CSV Report. How can i create a RTF(Template) in MS-Word having 40 columns ?? I just cannot accomodate the columns, they

  • Which table sap stores initial budget entry by periods?

    So I entered initial budget balance in FMBBC by periods (1-12). I search available reports but none of the report shows the budget by periods (except for FMB_B02 - Budget View by Process) but I have to clicks it through one by one. Its not practical.

  • Can I rename Plug-Ins?

    I have several third party plug-ins and I am wondering if I can edit or rename them as they appear in the "Video Filters" menu. Example: "simple Levels" could be "Simplified Levels" Also, I would like to change or edit the folders they appear in. For