When send email

i am having internal table contains values.
i want that output should be send as an email attachment to email id given in selection screen.
but chinese can't diaplay rightly in attachment.eg:'批次; ','日期‘,and so on,all can't display rightly! . 
please help me its urgent.thank you
*& Report  YPD00010A
*& DEVELOPER/DATE : SJDU / 12.06.2007
*&          REPORT: display barcodes which can't be updated in the sta
*&                  of x_ray
REPORT YPD00010A no standard page heading
                line-count 90
                line-size 120 .
selection-screen begin of block sel with frame.
PARAMETERS:
PA_WERKS LIKE YP043D-WERKS OBLIGATORY DEFAULT '8000',
PA_MAIL like ys054-mailaddress MATCHCODE OBJECT ZMAILADDRESS,
PA_MAIL1 like ys054-mailaddress MATCHCODE OBJECT ZMAILADDRESS,
PA_ZBAT like YP043D-ZBAT OBLIGATORY MATCHCODE OBJECT ZZBAT.     "File
selection-screen end of block sel.
DATA: BEGIN OF Line1,
ZBARCD LIKE yp043d-zbarcd,
END OF Line1.
DATA: ta_yp043d like Line1 occurs 0 with header line.
data: begin of TAB,
        X(1) type x value '09',
      end of tab,
      C(10)  type c.
class cl_abap_char_utilities definition load.
c+5(1) =  cl_abap_char_utilities=>horizontal_tab.
DATA:
  it_message TYPE STANDARD TABLE OF solisti1 INITIAL SIZE 0 WITH HEADER
LINE,
  it_attach  TYPE STANDARD TABLE OF solisti1 INITIAL SIZE 0 WITH HEADER
LINE.
data: p_email TYPE somlreci1-receiver .
data: p_email2 TYPE somlreci1-receiver .
DATA: TP_MAIL(255) TYPE C.
DATA: TP_MAIL_MAIN(255)  TYPE C.
DATA: TP_MAIL_TMP(255)  TYPE C.
DATA:
  t_packing_list  LIKE sopcklsti1 OCCURS 0 WITH HEADER LINE,
  t_contents      LIKE solisti1   OCCURS 0 WITH HEADER LINE,
  t_receivers     LIKE somlreci1  OCCURS 0 WITH HEADER LINE,
  t_attachment    LIKE solisti1   OCCURS 0 WITH HEADER LINE,
  t_object_header LIKE solisti1   OCCURS 0 WITH HEADER LINE,
  w_doc_data      LIKE sodocchgi1,
  w_cnt           TYPE I,
  w_sent_all(1)   TYPE C,
  gd_error        TYPE sy-subrc,
  gd_reciever     TYPE sy-subrc.
DATA:COUNT1 TYPE I VALUE 0,
     COUNT2 TYPE I VALUE 0.
INITIALIZATION.
  clear: ta_yp043d, it_attach, it_message.
  REFRESH: ta_yp043d, it_attach, it_message.
START-OF-SELECTION.
  PERFORM GET_DATA.
  IF PA_MAIL <> ' ' OR PA_MAIL1 <> ' '.
          READ TABLE TA_YP043D INDEX 1.
           IF SY-SUBRC = 0 .
            pERFORM SEND_EMAIL.
           ENDIF.
ENDIF.
END-OF-SELECTION.
  PERFORM GET_WRITEDATA.
  TOP-OF-PAGE.
  PERFORM GET_HEADER.
END-OF-PAGE.
*&      Form  GET_HEADER                                               *
*&      To display the header                                          *
FORM GET_HEADER.
   data:
   tp_header(120)  type c.
  TP_HEADER  = '&#23665;&#19996;&#20844;&#21496;&#26465;&#30721;&#34920;'.
WRITE:4 '&#31243;&#24207;&#24207;&#21495;:',10 'YPD00010', 42 tp_header,
92 '&#26085;&#26399;:',102 SY-DATUM+0(4),
106 '&#24180;',
     108 SY-DATUM+4(2),110 '&#26376;',112 SY-DATUM+6(2),114 '&#26085;',
     /92 '&#26102;&#38388;    :',SY-TIMLO,
     /3 '&#19978;&#20256;&#20973;&#35777;:',18 PA_ZBAT, 92  '&#39029;&#30721;    :', SY-PAGNO.
ULINE.
ENDFORM.
*&      Form  GET_DATA
*       text
*  -->  p1        text
*  <--  p2        text
FORM GET_DATA .
DATA:TP_ZBARCD LIKE YP043-ZBARCD,
     TP_ZBARCD1 LIKE YP043-ZBARCD,
     TP_ZVALS LIKE YP043D-ZVALS.
SELECT ZBARCD INTO CORRESPONDING FIELDS OF TABLE ta_yp043d FROM YP043D
    WHERE WERKS = PA_WERKS AND ZBAT = PA_ZBAT
      AND ZUPDS = 'N' AND ZVALS = 'B' AND ZLVORM <> 'X'.
ENDFORM.                    " GET_DATA
*&      Form  GET_WRITEDATA
*       text
*  -->  p1        text
*  <--  p2        text
FORM GET_WRITEDATA .
WRITE: /'&#30827;&#21270;&#26410;&#19978;&#20256;&#30340;&#26465;&#30721;&#26377;&#65306;'.
SKIP.
LOOP AT TA_YP043D.
WRITE:TA_YP043D-ZBARCD,' '.
ENDLOOP.
ENDFORM.                    " GET_WRITEDATA
*&      Form  SEND_EMAIL
*       text
*  -->  p1        text
*  <--  p2        text
FORM SEND_EMAIL.
READ TABLE TA_YP043D INDEX 1.
IF SY-SUBRC = 0 .
* Retrieve sample data from table ekpo
*  PERFORM DATA_RETRIEVAL.
* Populate table with detaisl to be entered into .htm file
  PERFORM BUILD_XLS_DATA_TABLE.
* Populate message body text
  PERFORM POPULATE_EMAIL_MESSAGE_BODY.
* Send file by email attached as .htm file
  PERFORM SEND_FILE_AS_EMAIL_ATTACHMENT
                                 TABLES it_message
                                        it_attach
                                  USING p_email
                                        '&#26465;&#30721;&#31995;&#32479;&#20986;&#24211;&#26377;&#38382;&#39064;&#30340;&#26465;&#30721;'
                                        'HTML'
                                        'WC_Document'
                               CHANGING gd_error
                                        gd_reciever.
*   Instructs mail send program for SAPCONNECT to send email(rsconn01)
  PERFORM INITIATE_MAIL_EXECUTE_PROGRAM.
ENDIF.
ENDFORM.                    " SEND_EMAIL
*&      Form  BUILD_XLS_DATA_TABLE
*       text
*  -->  p1        text
*  <--  p2        text
FORM BUILD_XLS_DATA_TABLE .
CONCATENATE '<' 'HTML' '>' INTO it_attach .
APPEND it_attach.
CONCATENATE '<' 'HEAD' '>' INTO it_attach .
APPEND it_attach.
CONCATENATE
'<meta http-equiv=Content-Type content=' '"' 'text/html; charset= GB2312
''"' '>' INTO it_attach.
APPEND it_attach.
CONCATENATE '<' '/HEAD' '>' INTO it_attach .
APPEND it_attach.
CONCATENATE '<P style=''font-size:12.0PT''><B> &#25209;&#27425;&#65306;' pa_zbat
'</B></P>' INTO it_attach SEPARATED BY
CL_ABAP_CHAR_UTILITIES=>horizontal_tab.
APPEND it_attach.
CONCATENATE '<P style=''font-size:12.0pt''><B> &#26085;&#26399;&#65306;' sy-datum
'</B></P>' INTO it_attach SEPARATED BY
CL_ABAP_CHAR_UTILITIES=>horizontal_tab.
APPEND it_attach.
CONCATENATE '<P style=''font-size:12.0pt''><B>' '&#30827;&#21270;&#26410;&#19978;&#20256;&#30340;&#26465;&#30721;&#26377;&#65306; '
'</B></P>' INTO it_attach SEPARATED BY
CL_ABAP_CHAR_UTILITIES=>horizontal_tab.
APPEND it_attach.
*CONCATENATE '<P style=''font-size:12.0pt''><B>' ' ' ' </B></P>' INTO
*it_attach.
*APPEND it_attach.
LOOP AT TA_YP043D .
*CONCATENATE  '< style=''font-size:12.0pt''><B> ' TAB-ZBARCD  '</B>'
CONCATENATE  '<B> ' TA_YP043D-ZBARCD '   </B>' INTO
it_attach .
APPEND it_attach.
ENDLOOP.
ENDFORM.                    " BUILD_XLS_DATA_TABLE
*&      Form  POPULATE_EMAIL_MESSAGE_BODY
*       text
*  -->  p1        text
*  <--  p2        text
FORM POPULATE_EMAIL_MESSAGE_BODY .
DATA: TP_TEST0(255) TYPE C,
TP_TEST3(255) TYPE C,
TP_TEST(255) TYPE C.
TP_TEST = '&#24403;&#36718;&#32974;&#36827;&#34892;X&#20809;&#26426;&#25968;&#25454;&#19978;&#20256;&#26102;,&#26377;&#20123;&#26465;&#30721;&#22312;&#30827;&#21270;&#38454;&#27573;&#19981;&#23384;&#22312;&#36164;&#26009;'.
TP_TEST0 = '&#35831;&#24744;&#26597;&#30475;&#24182;&#23613;&#24555;&#35299;&#20915;.'.
CONCATENATE TP_TEST TP_TEST0 INTO TP_TEST3 SEPARATED BY ' , '.
  APPEND '&#23562;&#25964;&#30340;&#20808;&#29983;/&#22899;&#22763;,' TO it_message.
  APPEND ' ' TO it_message.
  APPEND TP_TEST3 TO it_message.
  APPEND '&#20855;&#20307;&#38382;&#39064;&#35831;&#26597;&#30475;&#38468;&#20214;.' TO it_message.
  APPEND ' ' TO it_message.
  APPEND '&#35874;&#35874;.' TO it_message.
  APPEND ' ' TO it_message.
  APPEND '&#26469;&#33258;,' TO it_message.
  APPEND SY-UNAME TO it_message.
ENDFORM.                    " POPULATE_EMAIL_MESSAGE_BODY
*&      Form  SEND_FILE_AS_EMAIL_ATTACHMENT                            *
*&      Send email                                                     *
FORM SEND_FILE_AS_EMAIL_ATTACHMENT TABLES pit_message
                                          pit_attach
                                    USING p_email
                                          p_mtitle
                                          p_format
                                          p_filename
                                          p_attdescription
                                          p_sender_address
                                          p_sender_addres_type
                                 CHANGING p_error
                                          p_reciever.
  DATA:
    ld_error    TYPE sy-subrc,
    ld_reciever TYPE sy-subrc,
    ld_mtitle LIKE sodocchgi1-obj_descr,
    ld_email LIKE  somlreci1-receiver,
    ld_email2 LIKE  somlreci1-receiver,
    ld_format TYPE  so_obj_tp ,
    ld_attdescription TYPE  so_obj_nam ,
    ld_attfilename TYPE  so_obj_des ,
    ld_sender_address LIKE  soextreci1-receiver value
'[email protected]',
    ld_sender_address_type LIKE  soextreci1-adr_typ,
    ld_receiver LIKE  sy-subrc.
    data: TMP_MAIL(40)  TYPE C.
DATA: MAIN_EMAIL(40)  TYPE  C.
DATA: TMP_POS TYPE I .
DATA: ADD_EMAIL(40)  TYPE  C.
DATA: L_POS TYPE I, R_POS TYPE I, MAIL_LEN TYPE I.
  ld_email               = p_email.
  ld_email2               = p_email2.
  ld_mtitle              = p_mtitle.
  ld_format              = p_format.
  ld_attdescription      = p_attdescription.
  ld_attfilename         = p_filename.
  ld_sender_address      = p_sender_address.
  ld_sender_address_type = p_sender_addres_type.
* Fill the document data.
  w_doc_data-doc_size = 1.
* Populate the subject/generic message attributes
  w_doc_data-obj_langu = sy-langu.
  w_doc_data-obj_name  = 'SAPRPT'.
  w_doc_data-obj_descr = ld_mtitle .
  w_doc_data-sensitivty = 'F'.
* Fill the document data and get size of attachment
  CLEAR w_doc_data.
  READ TABLE it_attach INDEX w_cnt.
  w_doc_data-doc_size =
     ( w_cnt - 1 ) * 255 + STRLEN( it_attach ).
  w_doc_data-obj_langu  = sy-langu.
  w_doc_data-obj_name   = 'SAPRPT'.
  w_doc_data-obj_descr  = ld_mtitle.
  w_doc_data-sensitivty = 'F'.
  CLEAR t_attachment.
  REFRESH t_attachment.
  t_attachment[] = pit_attach[].
* Describe the body of the message
  CLEAR t_packing_list.
  REFRESH t_packing_list.
  t_packing_list-transf_bin = space.
  t_packing_list-head_start = 1.
  t_packing_list-head_num   = 0.
  t_packing_list-body_start = 1.
  DESCRIBE TABLE it_message LINES t_packing_list-body_num.
  t_packing_list-obj_name   =  ld_attfilename.
  t_packing_list-doc_type   = 'RAW'.
  APPEND t_packing_list.
* Create attachment notification
  t_packing_list-transf_bin = 'X'.
  t_packing_list-head_start = 1.
  t_packing_list-head_num   = 1.
  t_packing_list-body_start = 1.
  DESCRIBE TABLE t_attachment LINES t_packing_list-body_num.
  t_packing_list-doc_type   =  ld_format.
  t_packing_list-obj_descr  =  ld_attdescription.
  t_packing_list-obj_name   =  ld_attfilename.
  t_packing_list-doc_size   =  t_packing_list-body_num * 255.
  APPEND t_packing_list.
* Add the recipients email address
  CLEAR t_receivers.
  REFRESH t_receivers.
TP_MAIL_MAIN = PA_MAIL.
TP_MAIL = PA_MAIL1.
if sy-subrc = 0 .
  t_receivers-receiver   = TP_MAIL_MAIN.
  t_receivers-rec_type   = 'U'.
  t_receivers-com_type   = 'INT'.
  t_receivers-notif_del  = 'X'.
  t_receivers-notif_ndel = 'X'.
  APPEND t_receivers.
ENDIF.
*READ FROM TP_MAIL LIST
TP_MAIL_TMP = TP_MAIL  .
WHILE SY-SUBRC = 0 .
  SEARCH TP_MAIL_TMP FOR ', ' .
  MAIL_LEN = STRLEN( TP_MAIL_TMP ) .
  IF SY-SUBRC = 0 .
    TMP_POS = sy-fdpos .
    ADD_EMAIL = TP_MAIL_TMP+0(TMP_POS) .
    R_POS = TMP_POS + 2 .
    L_POS = MAIL_LEN - TMP_POS .
    TP_MAIL_TMP = TP_MAIL_TMP+R_POS(L_POS) .
  ELSE.
    ADD_EMAIL = TP_MAIL_TMP .
  ENDIF.
  t_receivers-receiver   = ADD_EMAIL.
  t_receivers-rec_type   = 'U'.
  t_receivers-com_type   = 'INT'.
  t_receivers-notif_del  = 'X'.
  t_receivers-notif_ndel = 'X'.
  t_receivers-COPY      = 'X' .
  APPEND t_receivers.
ENDWHILE.
  CALL FUNCTION 'SO_DOCUMENT_SEND_API1'
       EXPORTING
            document_data              = w_doc_data
            put_in_outbox              = 'X'
            sender_address             = ld_sender_address
            sender_address_type        = ld_sender_address_type
            commit_work                = 'X'
       IMPORTING
            sent_to_all                = w_sent_all
       TABLES
            packing_list               = t_packing_list
            contents_bin               = t_attachment
            contents_txt               = it_message
            receivers                  = t_receivers
       EXCEPTIONS
            too_many_receivers         = 1
            document_not_sent          = 2
            document_type_not_exist    = 3
            operation_no_authorization = 4
            parameter_error            = 5
            x_error                    = 6
            enqueue_error              = 7
            OTHERS                     = 8.
* Populate zerror return code
  ld_error = sy-subrc.
* Populate zreceiver return code
  LOOP AT t_receivers.
    ld_receiver = t_receivers-retrn_code.
  ENDLOOP.
ENDFORM.                    " SEND_FILE_AS_EMAIL_ATTACHMENT
*&      Form  INITIATE_MAIL_EXECUTE_PROGRAM                            *
*&      Instructs mail send program for SAPCONNECT to send email       *
FORM INITIATE_MAIL_EXECUTE_PROGRAM.
  WAIT UP TO 2 SECONDS.
  SUBMIT rsconn01 WITH mode = 'INT'
                WITH output = 'X'
                AND RETURN.
ENDFORM.                    " INITIATE_MAIL_EXECUTE_PROGRAM
Message was edited by:
        shanjing du
Message was edited by:
        shanjing du

Try the following.
You may need to add language parameter to  "CALL METHOD cl_document_bcs=>create_document",  or perhaps replace it with a call to the ADD_ATTACHMENT method or some other method of this class - there are public methods for text, MIME, office documents.
==================
*& Report  ZLOCAL_EMAIL_TEST
  Test of ECC Send email using class CL_BCS
REPORT  zlocal_email_test.
DATA:
   l_obj           TYPE REF TO cl_bcs,
   l_recip         TYPE REF TO if_recipient_bcs,
   l_rec           TYPE REF TO cl_cam_address_bcs,
   sender          TYPE REF TO if_sender_bcs,
   note            TYPE  bcsy_text,
   line            TYPE soli,
   l_address       TYPE adr6-smtp_addr,
   l_result        TYPE os_boolean,
   l_sub           TYPE string,
   text            TYPE bcsy_text,
   document        TYPE REF TO cl_document_bcs.
parameters: p_email like ADR6-SMTP_ADDR visible length 70,
            p_uname like sy-uname default sy-uname.
START-OF-SELECTION.
Create email instance
  l_obj = cl_bcs=>create_persistent( ).
Build text of message
  APPEND 'Hello World' TO text.
  APPEND 'Hello World 2' TO text.
  APPEND 'Hello World 3' TO text.
  APPEND 'Hello World 4' TO text.
Create the email document
  CALL METHOD cl_document_bcs=>create_document
      EXPORTING
        i_type        = 'RAW'
        i_subject     = 'subject line'
     I_LENGTH      =
     I_LANGUAGE    = SPACE
     I_IMPORTANCE  =
     I_SENSITIVITY =
         i_text        = text
     I_HEX         =
     I_HEADER      =
     I_SENDER      =
      RECEIVING
        result        = document.
Add document to email object
  CALL METHOD l_obj->set_document
    EXPORTING
      i_document = document.
Short form version
CALL METHOD l_obj->set_document( document ).
Build long subject line
  CONCATENATE 'Long subject' sy-abcde 'with still more'
              'Long subject' sy-abcde 'with still more'
              'Long subject' sy-abcde 'with still more'
    INTO l_sub SEPARATED BY space.
Add long subject to the email
  CALL METHOD l_obj->set_message_subject
    EXPORTING
      ip_subject = l_sub.
Get recipient address in correct format
  CALL METHOD cl_cam_address_bcs=>create_internet_address
    EXPORTING
      i_address_string = p_email
    RECEIVING
      result           = l_rec.
Add recipient address to the email
  CALL METHOD l_obj->add_recipient
    EXPORTING
      i_recipient = l_rec
      i_express   = 'X'.
Get Sender address in correct format
  CALL METHOD cl_sapuser_bcs=>create
    EXPORTING
      i_user = p_uname
    RECEIVING
      result = sender.
Short form version of this method call
sender = cl_sapuser_bcs=>create( sy-uname ).
Add sender to the email
  CALL METHOD l_obj->set_sender
    EXPORTING
      i_sender = sender.
Send the email
  CALL METHOD l_obj->send
EXPORTING
   I_WITH_ERROR_SCREEN = SPACE
    RECEIVING
      result              = l_result.
Required commit work.
  COMMIT WORK.

Similar Messages

  • TS3899 When sending email from the Mail App or through other Apps, my default From: address will change when I enter a To: address.  This sometimes leads me to send the email from the wrong outgoing email account.  It is frustrating and poor design.

    When sending email from the Mail App or through other Apps on my iPad, my default From: address will change when I enter a To: address.  This sometimes leads me to send the email from the wrong outgoing email account.  It is frustrating and poor design, especially since I had already checked the From: address.
    iPad 4 running iOS 8.1.3

    3rd party email addresses have to be deleted on every synmced mac product, although I have 1and1.co.uk and my imac updatetes the mails in that account from mac mail.
    Yahoo etc is a 2 step deleting process but good to get your emails pushed when on the go.
    LJ
    http://www.facebook.com/The.Cowboy.Party

  • I am losing my carriage returns when sending emails. How to keep? uses SMTP Email MIME Text Content-Type.vi

    I am losing my carriage returns when sending emails using the Internet email vi's.
    All carriage returns are stripped out and I get one long word wrapped paragraph.
    I want to avoid html.
    Ideally, using the vi's for rich text would be perfect, but a simple text message with carriage returns and line feeds in any font ok. 
    uses SMTP Email MIME Text Content-Type.vi
    i have tried text/plain, text/html, and mixed yada something

    You need to use Line feed constant and then use concatenate function.See the screen shot.
    Naqqash
    Attachments:
    Using Line feed.png ‏15 KB

  • How can I get a picture to go with my email signature when sending emails from my iPad? Only a square box shows up on my signature not the actual picture I iploaded in my settings.

    How can I get a picture to go with my email signature when sending emails from my iPad? Only a square box shows up on my signature not the actual picture I iploaded in my settings.

    Only Apple Account Security could help at this point. You can try calling Apple Support in Canada - you'll have to find one of the several ways, such as Skype, to call an 800 number from outside of the relevant country - and ask for Account Security and see if they can help. Or you can find a friend who speaks Chinese and ask them to help you talk to Apple Support in China. There are really no other options that I know of.
    Note, by the way, that these are user-to-user support forums. You aren't speaking with Apple when you post here.
    Regards.

  • IPhone connections hangs when sending email after upgrade.

    After upgrading to 2.0 firmware on my first generation IPhone, the phone now regulary hangs when sending email via smtp. Even if I try to close the connection by putting it into AirPlane mode and back again it still hangs and from that point onwards doesn't check or send any new emails. If I then shut the phone down and restart it looses the email as it's not either in the sent or outbox folders. This has happened quite a few times since upgrading. Does anybody have any advice?

    Found this useful tidbit by mdwelsh231 on another thread:
    "I'm having this problem too. Rather than rebooting the phone, an even easier solution is to hold down the Home button for several seconds (I believe it's 8 sec) which will kill the Mail application and return you to the home screen. Restarting Mail (by tapping the Mail icon) will cause it to reconnect. I find that this resolves the connection hanging issue. However, it is still kind of a pain. I suspect a bug in the 2.0 iPhone firmware. "
    Worked for me
    Cheers,
    C

  • Why am I getting syntax error messages when sending emails thru MS Office:MAC 2011?

    Why am I getting suntax error messages when sending emails thru my outlook on my MacPro?

    What are the exact and complete error messages?

  • IPhoto quits when sending email

    iPhoto quits when sending email in iPhoto.

    Thanks Terence,
    What version of iPhoto.
    - What version of the Operating System.
    I recently upgraded to iPhoto '11,ver. 9.3.1.
    I have a MacBook Pro running 10.7.4.
    Previously I had no issues sending emails with iPhotos via my mail application.  Now I can't email out of iPhoto or out of mail.  iPhoto just quits.  There are no error messages.
    I have started a new iPhoto library separate from my original library.  Still quits.
    I have opened a new account for start-up, still quits.
    Any suggustions will be appreciated.
    Thanks,
    Ron
    - What steps have you tried already to solve the issue.

  • How does workflow retrieve users under position/job when sending email

    Dear All:
    This question is after my thread before: 'How does workflow retrieve users under an org. unit when sending email", my further question would be how to get users under a position/job.
    I find the evaluation path 'WF_ORGUS' that is delivered by SAP, and I am wondering whether it will cover all my cases: to retrieve users under an org. type including org. unit, position and job.
    Thanks in advance!
    Haifeng Hu

    Hello,
    Okay, I misunderstood. You don't get to specify the evaluation path - if you fill in a Position then SAP fetches the users in that position. It works, so I haven't thought about it any further. Any reason you want to know exactly how it is done?
    regards
    Rick Bakker
    hanabi technology

  • Unable to retrieve attachments when sending emails.

    When sending emails I can select any attachment ,and when I select open or double click attachment button the icon at the end of the attachment button spins like its trying to retrieve attachment but never completes.

    Using Howmail where n the Mac? In the Mac Mail app?
    What does all the above mean in " The attachments are all the above"?
    What are the attachments? photos?

  • Since upgrading my ipad and iphone software i am receiving an error message when sending emails, saying that the email address was rejected by the server.

    Hi,
    Since upgrading my ipad and iphone software i am receiving an error message when sending emails, saying that the email address was rejected by the server.
    Please advise if this is a known problem, and what is the fix.
    Many thanks
    Mark

    Try a Reset [Hold the Home and Sleep/Wake buttons down together for 10 seconds or so (until the Apple logo appears) and then release. The screen will go blank and then power ON again in the normal way.] It is app and data safe!

  • Runtime error when sending email from PCUI

    Hi,
    When sending email from an activity in PCUI, I get runtime error, Line 2201, error, 'Object Expected'.
    Any idea?
    Thanks,
    AR

    Hi AR,
    This appears to be a javascript error. Could you give some more details about this error.
    Regards,
    Hemanth

  • Getting an error message when sending emails on my 4s iphone?

    just got my Iphone , but getting an error when sending emails...can anyone help

    What error message are you getting when try to send out emails and what type of email account is it?

  • Garbled text when sending emails

    Is anyone else having a problem when sending emails and some of the words looking like this, H=w are y=u?
    I've wiped and re enter my email account and text is still garbled. Also the Add to Home Screen does not work after security wiped.
    Please help!

    This is a known issue.
    http://forums.crackberry.com/blackberry-z10-f254/emails-sent-received-garbled-780422/#post8192729
    Z10
    Rogers, Halifax NS

  • I get the following message when sending emails: The recipient "email address" was rejected by the server".  If I send the email to 3 people, one will be rejected and a different person will be rejected.  Any ideas?

    I get the following message when sending emails on my ipad:  The recipient "email address" was rejected by the server".  If I send the email to 3 people, one will be rejected.  If I send the same thing to the same 3 people a different one will be rejected.  Any ideas?

    Try a Reset [Hold the Home and Sleep/Wake buttons down together for 10 seconds or so (until the Apple logo appears) and then release. The screen will go blank and then power ON again in the normal way.] It is app and data safe!

  • When sending email message appears "sending the message failed because you exceeded your sending limit. A copy has been placed in you outbox"

    When sending email message appears "sending the message failed because you exceeded your sending limit.  A copy has been placed in your outbox"

    Who's the provider? Do they have a limit?
    https://discussions.apple.com/message/22929931#22929931

  • When send email with emoticons to a pc user, emoticons show as an empty box. Also, email content has a symbol on every line. How to stop this from happening?

    When send email with emoticons to a pc user, emoticons show as an empty box. Also, email content has a > symbol on every line. How to stop this from happening?

    Dear Mr. Toad (my all-time favorite ride at Disneyland ;-) ..
    Thanks so much for your detailed reply.. my netbook is in the bedroom, turned off.. I (so far) only use it in the evening, in the bedroom.. I've saved your response, and will try your suggestions, and let you know if they solve the problem I described. I really appreciate you taking the time to post such a detailed reply..
    I can't answer your Thunderbird "configuration" questions, because I'm in the living room, using the crap Vista laptop, on which I plan to install Thunderbird, and then take Windoze Mail out in the street and drive over it a few times.. I'll get back to you one way or the other, and let you know if your instructions solved the problem, or not..
    I don't understand why Thunderbird "out of the box", so to speak, simply doesn't forward HTML emails with embedded graphics, (like Outlook Excess, and Winblows Mail do).. without having to go through those steps. I personally HATE HTML email, but over the years, it's become more and more prevelant.. so it's a problem I must fix..
    Thanks again..
    Harv..

Maybe you are looking for

  • Creating and Selecting a line in After Effects CC?

    OK, So I suppose this is a two part question... But there is a little thing in After Effects CC that is annopying me alot, and it could just be me, and the way I've been doing things... 1) The way I have creating a simple Line in After effects, is by

  • Open iWeb on another mac using Dropbox or a flash drive?

    I am having a hard time transfering the iWeb file that I created from one mac to another.  I have it saved in Dropbox and have tried to open it from another mac through Dropbox and initailly it wouldn't open it at all.  Then I tried the iWeb Switch D

  • Why I can delete a delivery after picking was done?

    Hello, Someone knows if it is a bug or a feature that I can delete a delivery although it was already fully picked and the status is "C"? I am not sure since when I can delete a delivery even after picking was done, maybe it started after our upgrade

  • How To Upgrade My VRam On A MBP

    Hy There I am using a MacBook Pro and I was wondering if it would be possible for me to upgrade my mac's VRam from 256mb to 512mb of VRam. I am currently running on 8gb of RAM (Just saying if RAM is needed for upgrading my mac's VRam). PLZ HELP

  • Why is Authorization Computer keeps coming up after authorizating?

    My computer crashed so I had to reload all my programs.  In doing so, iTunes keeps making me authorize my computer. When I go through the authorization process and I am syncing my iPhone 3GS, the prompt for authorization keeps coming up.