Cant send mail from i phone 3s, with a tiscali account

I can no longer send mail from my tiscali mail account on my i phone 3s, or my ipad without going through web mail account. please can anyone advise

Isn't mail.virgin.net the name of the Incoming Server -- the incoming server, which you say is working is set up at Mail Preferences/Accounts/Account Information as to name of the server, Username, and password, along with entries in Mail Preferences/Accounts/Advanced for Port select for the Incoming.
However, if that is working for you, you must have it correct. For the Outgoing server, isn't the proper name for Virgin services smtp.virgin.net? In Mail Preferences/Accounts/Account Information, click on the arrows beside the name of the SMTP, and choose Edit Server List. Remove all, or all but one of any references to the smtp.virgin.net. Enter anew, or with the remaining server, click on the Advanced Tab there, and choose Use Custom Ports. Then enter the Custom Port to be Port 25, and set the Authentication to None, and have no entries in Username or Password. This is consistent with those specs I can online saying the SMTP does not require Authentication.
Also click Use this server only. Now if the smtp.virgin.net server is online, it should work.
Ernie

Similar Messages

  • Cant send mail from my phone

    I can't send mail from my iphonem I can receive it, however

    If you want help, you're going to need to provide a whole lot more information. What is the exact wording of the error messages you've received? Who is your email provider? Does the problem exist on WiF or cellular or both?  What troubleshooting steps have you already taken? Have you deleted the account and added it back? Have you reset your phone by pressing and holding the power and Home buttons until the silver apple appears?
    The more information you can provide, the more likely you are to get the help you need.
    Best of luck.

  • Cant send mail from iPad and iphone

    Hello:
    I have the same configuration of email accounts in my macbookpro, ipad and iphone, but i cant send email from my ipad and iphone. The message appear in sent folder ( imap ) but the recipient never recive the mail.

    iOS: Unable to send or receive email
    http://support.apple.com/kb/TS3899
    Can’t Send Emails on iPad – Troubleshooting Steps
    http://ipadhelp.com/ipad-help/ipad-cant-send-emails-troubleshooting-steps/
    iPad Mail
    http://www.apple.com/support/ipad/mail/
     Cheers, Tom

  • Cant send mail from 1 account

    I have 3 mail accounts on my powerbook, one is bellsouth. When I try to send mail from the bellsouth account, it tells me it can't use the selected server. Bellsouth won't let me use other servers ( including .mac accounts) so if I have to send mail when I'm connected via bellsouth I have to use that account. I'm able to send via bellsouth from my other notebok ( windows) so the problem has to be on the powerbook somewhere. I've deleted the account from mail, and re-added it a few times, all to no avail.
    any suggestsion would be greatly appreciated!
    I'm running the latest build of Tiger.

    changed the port to 25, everything working fine now.

  • TS3899 cant send mail from my i phone

    I can receive mail but can not send or forward mail from my i phone

    If you want help, you're going to need to provide a whole lot more information. What is the exact wording of the error messages you've received? Who is your email provider? Does the problem exist on WiF or cellular or both?  What troubleshooting steps have you already taken? Have you deleted the account and added it back? Have you reset your phone by pressing and holding the power and Home buttons until the silver apple appears?
    The more information you can provide, the more likely you are to get the help you need.
    Best of luck.

  • Cant send mail from method

    Hi All
    I have a class that I developed, one of my methods should send mail.
    I tried using the function : SO_NEW_DOCUMENT_SEND_API1 in order to do so.
    I also tried using the class : cl_bcs .
    In both methods I have written commit work after activating the function/method.
    The mail did get into my private outbox, but it did not reach SCOT ( transaction ).
    I tried writing the same code as I wrote in the method inside a program and it worked fine ( including the SCOT part).
    Do any of u have any idea why would the same code work in a regular program and not in a method?????
    Thanks
    Nitsan

    Hi Nitsan,
    Please check the code below. It will surely work.
    DATA:
         it_text TYPE STANDARD TABLE OF solisti1
                  WITH NON-UNIQUE DEFAULT KEY,
         it_cont TYPE STANDARD TABLE OF solisti1
                  WITH NON-UNIQUE DEFAULT KEY.
      DATA: send_request       TYPE REF TO cl_bcs.
    *  DATA: text               TYPE bcsy_text.
    *  DATA: binary_content     TYPE solix_tab.
      DATA: document           TYPE REF TO cl_document_bcs.
      DATA: sender             TYPE REF TO if_sender_bcs. "cl_sapuser_bcs.
      DATA: recipient          TYPE REF TO if_recipient_bcs.
      DATA: bcs_exception      TYPE REF TO cx_bcs.              "#EC *
      DATA: sent_to_all        TYPE os_boolean.
      DATA: wa_subject(50) TYPE c.
      IF admin_flag = 'X'.
        wa_subject = text-046.
      ELSE.
        wa_subject = text-047.
      ENDIF.
      CLEAR wa_err_flg.
      PERFORM create_style CHANGING it_text.     u201Csee below
      PERFORM create_message USING
        p_pernr wa_first_name wa_last_name wa_admin_name att_flag correction_flag reclass_flag miss_receipt_flag w_total_amt.    u201Csee below
      TRY.
    *     -------- create persistent send request ------------------------
          send_request = cl_bcs=>create_persistent( ).
    *     -------- create and set document with attachment ---------------
    *     create document from internal table with text
          document = cl_document_bcs=>create_document(
                          i_type    = 'HTM'
                          i_text    = it_text
    *                      i_length  = '12'
                          i_subject = wa_subject ).
    *     add attachment to document
    *     BCS expects document content here e.g. from document upload
    *     binary_content = ...
          IF att_flag IS NOT INITIAL.
            CALL METHOD document->add_attachment
              EXPORTING
                i_attachment_type    = 'HTM'
                i_attachment_subject = wa_subject
                i_att_content_text   = it_cont.
          ENDIF.
    *     add document to send request
          CALL METHOD send_request->set_document( document ).
    *     --------- set sender -------------------------------------------
    *     note: this is necessary only if you want to set the sender
    *           different from actual user (SY-UNAME). Otherwise sender is
    *           set automatically with actual user.
          sender ?= cl_cam_address_bcs=>create_internet_address(
                                            'ur email address' ).
    *      sender = cl_sapuser_bcs=>create( sy-uname ).
          CALL METHOD send_request->set_sender
            EXPORTING
              i_sender = sender.
    *     SENDER = 'ExpCompliance'.   "<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
    *     --------- add recipient (e-mail address) -----------------------
    *     create recipient - please replace e-mail address !!!
          DATA: wa_addr TYPE ad_smtpadr.
          MOVE wa_email_addr TO wa_addr.
          recipient = cl_cam_address_bcs=>create_internet_address(
                                            wa_addr ).
    *     add recipient with its respective attributes to send request
          CALL METHOD send_request->add_recipient
            EXPORTING
              i_recipient = recipient
              i_express   = 'X'.
    *     ---------- send document ---------------------------------------
          CALL METHOD send_request->send(
            EXPORTING
              i_with_error_screen = 'X'
            RECEIVING
              result              = sent_to_all ).
      IF sent_to_all = 'X'.
            COMMIT WORK.
            LOOP AT i_person_data ASSIGNING <fs_person_data>.
              MOVE <fs_person_data> TO wa_error_data.
              CONCATENATE wa_error_data-comments text-020 INTO wa_error_data-comments SEPARATED BY space.
              APPEND wa_error_data TO i_success.
            ENDLOOP.
          ELSE.
            LOOP AT i_person_data ASSIGNING <fs_person_data>.
              MOVE <fs_person_data> TO wa_error_data.
              MOVE text-021 TO wa_error_data-comments.
              APPEND wa_error_data TO i_email_errors.
              MOVE 'X' TO wa_err_flg.
              MOVE 'X' TO <fs_person_data>-error_flag.
            ENDLOOP.
          ENDIF.
    * *                     exception handling
    * * replace this very rudimentary exception handling
    * * with your own one !!!
        CATCH cx_bcs INTO bcs_exception.
    *      WRITE: 'Fehler aufgetreten.'(001).
    *      WRITE: 'Fehlertyp:'(002), bcs_exception->error_type.
    *      EXIT.
    *begin v02
          LOOP AT i_person_data ASSIGNING <fs_person_data>.
            MOVE <fs_person_data> TO wa_error_data.
            MOVE text-021 TO wa_error_data-comments.
            APPEND wa_error_data TO i_email_errors.
            MOVE 'X' TO wa_err_flg.
            MOVE 'X' TO <fs_person_data>-error_flag.
          ENDLOOP.
    *end v02
      ENDTRY.
      COMMIT WORK.    <<<< important!!!! You must do this after each email sent
    **********************************************************additional forms for style and message text********************************************
    *&      Form  create_style
    *       text
    *      <--P_IT_TEXT  text
    FORM create_style  CHANGING fpi_text TYPE it_text.
      DATA: w_line TYPE soli.
      CONCATENATE '<STYLE type = "text/css">'
        'A:link {COLOR: navy; TEXT-DECORATION: none}' INTO w_line.
      APPEND w_line TO fpi_text.
      CONCATENATE 'A:visited {COLOR: #3389a9;' 'TEXT-DECORATION: none}' INTO
      w_line.
      APPEND w_line TO fpi_text.
      w_line = 'A:hover {COLOR: #590000; TEXT-DECORATION: underline}'.
      APPEND w_line TO fpi_text.
      w_line = 'A:unknown {COLOR: white; TEXT-DECORATION: none}'.
      APPEND w_line TO fpi_text.
      w_line = 'B {      FONT-WEIGHT: bold}'.
      APPEND w_line TO fpi_text.
      CONCATENATE
    'BODY {FONT-WEIGHT: normal; FONT-SIZE: 10pt; MARGIN: 0px; FONT-STYLE:'
    'normal; FONT-FAMILY: Arial, Helvetica, sans-serif; BACKGROUND-COLOR:'
      'white}' INTO w_line.
      APPEND w_line TO fpi_text.
      CONCATENATE
      'H1 {FONT-WEIGHT: bold; FONT-SIZE: 20pt; COLOR: black; FONT-STYLE:'
      'normal; FONT-FAMILY: Arial, Helvetica, sans-serif}' INTO w_line.
      APPEND w_line TO fpi_text.
      CONCATENATE
      'H2 {FONT-WEIGHT: bold; FONT-SIZE: 16pt; COLOR: black; FONT-STYLE:'
      'normal; FONT-FAMILY: Arial, Helvetica, sans-serif}' INTO w_line.
      APPEND w_line TO fpi_text.
      CONCATENATE
      'H3 {FONT-WEIGHT: bold; FONT-SIZE: 14pt; COLOR: black; FONT-STYLE:'
      'normal; FONT-FAMILY: Arial, Helvetica, sans-serif}' INTO w_line.
      APPEND w_line TO fpi_text.
      CONCATENATE
      'H4 {FONT-WEIGHT: bold; FONT-SIZE: 12pt; COLOR: black; FONT-STYLE:'
      'normal; FONT-FAMILY: Arial, Helvetica, sans-serif}' INTO w_line.
      APPEND w_line TO fpi_text.
      CONCATENATE
      'H5 {FONT-WEIGHT: bold; FONT-SIZE: 10pt; COLOR: black; FONT-STYLE:'
      'normal; FONT-FAMILY: Arial, Helvetica, sans-serif}' INTO w_line.
      APPEND w_line TO fpi_text.
      w_line = 'I {      FONT-STYLE: italic }'.
      APPEND w_line TO fpi_text.
      CONCATENATE
      'P {FONT-WEIGHT: normal; FONT-SIZE: 10pt; COLOR: black; FONT-STYLE:'
      'normal; FONT-FAMILY: Arial, Helvetica, sans-serif}' INTO w_line.
      APPEND w_line TO fpi_text.
      CONCATENATE
      'TD {FONT-WEIGHT: normal; FONT-SIZE: 10pt; COLOR: black; FONT-STYLE'
      'normal; FONT-FAMILY: Arial, Helvetica, sans-serif}' INTO w_line.
      APPEND w_line TO fpi_text.
      CONCATENATE
      '.SectionBlockHeader {'
      'FONT-WEIGHT: bold; FONT-SIZE: 10pt; COLOR: #000066; FONT-FAMILY:'
      'Verdana}' INTO w_line.
      APPEND w_line TO fpi_text.
      CONCATENATE
      '.channelcontent {'
      'FONT-SIZE: 11px; MARGIN-BOTTOM: 3px; COLOR: #000000; FONT-FAMILY:'
      'Verdana, sans-serif}' INTO w_line.
      APPEND w_line TO fpi_text.
      w_line = '</STYLE>'.
      APPEND w_line TO fpi_text.
    ENDFORM.                    " create_style
    *&      Form  create_message
    *      Create message text
    FORM create_message USING p_pernr TYPE persno
                              wa_first_name LIKE pa0002-vorna
                              wa_last_name LIKE pa0002-nachn
                              wa_admin_name LIKE pa0002-vorna
                              wa_att_flag TYPE c
                              wa_corr_flag TYPE c
                              wa_reclass_flag TYPE c
                              wa_miss_receipt_flag TYPE c
                              wa_total_amt TYPE wertv8.         "#EC NEEDED
      DATA: wa_amount_text LIKE wa_text_store.
      DATA: wa_ptr_dir(80)  TYPE c.
      DATA: char_total_amt(10) TYPE c.
      FIELD-SYMBOLS: <fs_more_text> LIKE wa_text_store.
    *get auditors phone number
      READ TABLE i_person_data INDEX 1 INTO wa_person_data.
      CLEAR wa_phone-phone.
      READ TABLE i_auditor INTO wa_auditor WITH KEY usrid = wa_person_data-auditor.
      IF sy-subrc NE 0.
        MOVE text-033 TO wa_auditor-phone.
      ENDIF.
      CONCATENATE '(' wa_auditor-phone+0(3) ')' ' ' wa_auditor-phone+3(3) '-' wa_auditor-phone+6(4) INTO wa_auditor-phone.
      CONCATENATE wa_first_name wa_last_name INTO wa_ptr_dir SEPARATED BY space.
      WRITE wa_total_amt TO char_total_amt CURRENCY wa_person_data-loc_curr.
      PERFORM get_payroll_date USING p_pernr CHANGING w_date.
    *line 1
      REPLACE '[NAME]' IN  <fs_text_store>-zline1 WITH wa_first_name.
      REPLACE '[ADMIN_NAME]' IN  <fs_text_store>-zline1 WITH wa_admin_name.
      APPEND <fs_text_store>-zline1 TO it_text.
    *line 2
      CONCATENATE wa_first_name wa_last_name INTO wa_ptr_dir SEPARATED BY space.
      CONDENSE wa_ptr_dir.
      REPLACE '[PTR_DIR]' IN <fs_text_store>-zline2 WITH wa_ptr_dir.
      REPLACE '[INSERT TABLE]' IN  <fs_text_store>-zline2 WITH ' '.
      IF wa_admin_name IS NOT INITIAL.
        REPLACE 'Your' IN <fs_text_store>-zline2 WITH 'The'.
      ENDIF.
      IF sy-subrc = 0.
        APPEND <fs_text_store>-zline2 TO it_text.
        PERFORM insert_table USING wa_att_flag p_pernr.
      ELSE.
        APPEND <fs_text_store>-zline2 TO it_text.
      ENDIF.
    *line3
      REPLACE '[INSERT TABLE]' IN  <fs_text_store>-zline3 WITH ''.
      IF sy-subrc = 0.
        APPEND <fs_text_store>-zline3 TO it_text.
        PERFORM insert_table USING wa_att_flag p_pernr.
      ELSE.
        APPEND <fs_text_store>-zline3 TO it_text.
      ENDIF.
    *line4'
      IF <fs_text_store>-zline4 IS NOT INITIAL.
        REPLACE '[INSERT TABLE]' IN  <fs_text_store>-zline4 WITH ' '.
        IF sy-subrc = 0.
          APPEND <fs_text_store>-zline4 TO it_text.
          PERFORM insert_table USING wa_att_flag p_pernr.
        ELSE.
          APPEND <fs_text_store>-zline4 TO it_text.
        ENDIF.
      ENDIF.
      IF wa_total_amt IS NOT INITIAL.
        READ TABLE it_text_store INTO wa_amount_text WITH KEY zline10 = 'Amount Text' .
        IF sy-subrc NE 0.
          CLEAR wa_error_data.
          MOVE 'Amount Text is not on ZTE_TEXT_STORE table. ' TO wa_error_data-comments.
          APPEND wa_error_data TO i_spreadsheet_errors.
          RETURN.
        ELSE.
          REPLACE '[DATE]' IN  wa_amount_text-zline1 WITH w_date.
          REPLACE '[AMOUNT]' IN  wa_amount_text-zline1 WITH char_total_amt.
          IF wa_admin_name IS NOT INITIAL.
            REPLACE 'your' IN wa_amount_text-zline1 WITH 'the'.
          ENDIF.
          APPEND wa_amount_text-zline1 TO it_text.
        ENDIF.
      ENDIF.
      IF wa_reclass_flag = 'X'.
        READ TABLE it_text_store ASSIGNING <fs_more_text> WITH KEY zline10 = 'Re-Class of Expense' .
        IF sy-subrc NE 0.
          CLEAR wa_error_data.
          MOVE text-022 TO wa_error_data-comments.
          APPEND wa_error_data TO i_spreadsheet_errors.
          RETURN.
        ELSE.
          IF wa_admin_name IS NOT INITIAL.
            REPLACE 'your' IN <fs_more_text>-zline2 WITH 'the'.
          ENDIF.
          APPEND <fs_more_text>-zline2 TO it_text.
        ENDIF.
      ENDIF.
      IF wa_total_amt LT 0.
        APPEND wa_amount_text-zline2 TO it_text.
        APPEND wa_amount_text-zline3 TO it_text.
        APPEND wa_amount_text-zline4 TO it_text.
      ENDIF.
    *line5
      IF <fs_text_store>-zline5 IS NOT INITIAL.
        REPLACE '[PHONE]' IN <fs_text_store>-zline5 WITH wa_auditor-phone.
        IF wa_auditor-name IS NOT INITIAL.
          REPLACE text-023 IN <fs_text_store>-zline5 WITH wa_auditor-name.  "the expense compliance help desk
        ENDIF.
        APPEND <fs_text_store>-zline5 TO it_text.
      ENDIF.
    *line6
      IF <fs_text_store>-zline6 IS NOT INITIAL.
        APPEND <fs_text_store>-zline6 TO it_text.
      ENDIF.
    *line7
      IF <fs_text_store>-zline7 IS NOT INITIAL.
        APPEND <fs_text_store>-zline7 TO it_text.
      ENDIF.
    *line8
      IF <fs_text_store>-zline8 IS NOT INITIAL.
        APPEND <fs_text_store>-zline8 TO it_text.
      ENDIF.
    *line9
      IF <fs_text_store>-zline9 IS NOT INITIAL.
        APPEND <fs_text_store>-zline9 TO it_text.
      ENDIF.
    ENDFORM.                    " create_message
    Regards,
    Guru.
    Edited by: Guru Gompa on Sep 17, 2009 12:38 PM

  • Sending mails from sap to outlook with pdf attachment

    Hi All
    I am using the function module 'SO_NEW_DOCUMENT_ATT_SEND_API1' to send
    mail with the pdf attachment to a SMTP mail id(outlook). I have done all the configuration settings in SCOT transaction. But still i am not able to get the mail in my outlook mailbox. Following are the details of the steps i have followed.
    step1.
    Get the OTF data output from the SMARTFORMS function module.
    step2,
    convert the OTF output data to PDF format.
    step3.
    populate all the required table to pass data to the function
    module 'SO_NEW_DOCUMENT_ATT_SEND_API1' -
                packing_list              
                contents_bin              
                contents_txt              
                receivers 
    and call the function module.
    After doing the above steps still i am not able to get the mail in my outlook mailbox. Please Help.
    Thanks
    Jitendra Kumar Tripathy.

    hi,
    kindly chk the code i wrote for my program.
    it will  solve ur issue.
    Internal Table declarations
    DATA: i_otf TYPE itcoo OCCURS 0 WITH HEADER LINE,
          i_tline TYPE TABLE OF tline WITH HEADER LINE,
          i_receivers TYPE TABLE OF somlreci1 WITH HEADER LINE,
          i_record LIKE solisti1 OCCURS 0 WITH HEADER LINE,
    Objects to send mail.
          i_objpack LIKE sopcklsti1 OCCURS 0 WITH HEADER LINE,
          i_objtxt LIKE solisti1 OCCURS 0 WITH HEADER LINE,
          i_objbin LIKE solisti1 OCCURS 0 WITH HEADER LINE,
          i_reclist LIKE somlreci1 OCCURS 0 WITH HEADER LINE,
    Work Area declarations
          wa_objhead TYPE soli_tab,
          w_ctrlop TYPE ssfctrlop,
          w_compop TYPE ssfcompop,
          w_return TYPE ssfcrescl,
          wa_doc_chng typE sodocchgi1,
          w_data TYPE sodocchgi1,
          wa_buffer TYPE string,"To convert from 132 to 255
    Variables declarations
          v_form_name TYPE rs38l_fnam,
          v_len_in LIKE sood-objlen,
          v_len_out LIKE sood-objlen,
          v_len_outn TYPE i,
          v_lines_txt TYPE i,
          v_lines_bin TYPE i.
    call function 'SSF_FUNCTION_MODULE_NAME'
         exporting
              formname           = 'ZZZ_TEST1'
         importing
              fm_name            = v_form_name
         exceptions
              no_form            = 1
              no_function_module = 2
              others             = 3.
    IF sy-subrc <> 0.
      MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
              WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
    w_ctrlop-getotf = 'X'.
    w_ctrlop-no_dialog = 'X'.
    w_compop-tdnoprev = 'X'.
    CALL FUNCTION v_form_name
         EXPORTING
              control_parameters = w_ctrlop
              output_options     = w_compop
              user_settings      = 'X'
         IMPORTING
              job_output_info    = w_return
         EXCEPTIONS
              formatting_error   = 1
              internal_error     = 2
              send_error         = 3
              user_canceled      = 4
              OTHERS             = 5.
    IF sy-subrc <> 0.
      MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
      WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
    i_otf[] = w_return-otfdata[].
    call function 'CONVERT_OTF'
           EXPORTING
                format                = 'PDF'
                max_linewidth         = 132
           IMPORTING
                bin_filesize          = v_len_in
           TABLES
                otf                   = i_otf
                lines                 = i_tline
           EXCEPTIONS
                err_max_linewidth     = 1
                err_format            = 2
                err_conv_not_possible = 3
                others                = 4.
      Fehlerhandling
      if sy-subrc <> 0.
      endif.
      loop at i_tline.
        translate i_tline using '~'.
        concatenate wa_buffer i_tline into wa_buffer.
      endloop.
      translate wa_buffer using '~'.
      do.
        i_record = wa_buffer.
        append i_record.
        shift wa_buffer left by 255 places.
        if wa_buffer is initial.
          exit.
        endif.
      enddo.
    Attachment
      refresh:
        i_reclist,
        i_objtxt,
        i_objbin,
        i_objpack.
      clear wa_objhead.
      i_objbin[] = i_record[].
    Create Message Body
    Title and Description
      i_objtxt = 'test with pdf-Attachment!'.
      append i_objtxt.
      describe table i_objtxt lines v_lines_txt.
      read table i_objtxt index v_lines_txt.
      wa_doc_chng-obj_name = 'smartform'.
      wa_doc_chng-expiry_dat = sy-datum + 10.
      wa_doc_chng-obj_descr = 'smartform'.
      wa_doc_chng-sensitivty = 'F'.
      wa_doc_chng-doc_size = v_lines_txt * 255.
    Main Text
    wa_doc_chng-doc_size = ( v_lines_txt - 1 ) * 255 + strlen( i_objtxt )
      clear i_objpack-transf_bin.
      i_objpack-head_start = 1.
      i_objpack-head_num = 0.
      i_objpack-body_start = 1.
      i_objpack-body_num = v_lines_txt.
      i_objpack-doc_type = 'RAW'.
      append i_objpack.
    Attachment
    (pdf-Attachment)
      i_objpack-transf_bin = 'X'.
      i_objpack-head_start = 1.
      i_objpack-head_num = 0.
      i_objpack-body_start = 1.
    Länge des Attachment ermitteln
      describe table i_objbin lines v_lines_bin.
      read table i_objbin index v_lines_bin.
      i_objpack-doc_size =  v_lines_bin * 255 .
      i_objpack-body_num = v_lines_bin.
      i_objpack-doc_type = 'PDF'.
      i_objpack-obj_name = 'smart'.
      i_objpack-obj_descr = 'test'.
      append i_objpack.
      clear i_reclist.
      i_reclist-receiver = '[email protected]'.
      i_reclist-rec_type = 'U'.
      append i_reclist.
        call function 'SO_NEW_DOCUMENT_ATT_SEND_API1'
             EXPORTING
                  document_data              = wa_doc_chng
    put_in_outbox = 'X'
             TABLES
                  packing_list               = i_objpack
                  object_header              = wa_objhead
                  CONTENTS_BIN               = i_objbin
                  contents_txt               = i_objtxt
                  receivers                  = i_reclist
             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.
    if helped rwrd points
    anver

  • I cant send mail from my through mail

    I have an email account with virgin, brought it through and i recieve mail but i am not able to send mail, not sure why?

    Isn't mail.virgin.net the name of the Incoming Server -- the incoming server, which you say is working is set up at Mail Preferences/Accounts/Account Information as to name of the server, Username, and password, along with entries in Mail Preferences/Accounts/Advanced for Port select for the Incoming.
    However, if that is working for you, you must have it correct. For the Outgoing server, isn't the proper name for Virgin services smtp.virgin.net? In Mail Preferences/Accounts/Account Information, click on the arrows beside the name of the SMTP, and choose Edit Server List. Remove all, or all but one of any references to the smtp.virgin.net. Enter anew, or with the remaining server, click on the Advanced Tab there, and choose Use Custom Ports. Then enter the Custom Port to be Port 25, and set the Authentication to None, and have no entries in Username or Password. This is consistent with those specs I can online saying the SMTP does not require Authentication.
    Also click Use this server only. Now if the smtp.virgin.net server is online, it should work.
    Ernie

  • Cant send mail from nokia messaging email app

    Hi All,
    i  use the the nokia email messaging app on my Nokia N95 8gb, and when i send an email from my tiscalli  email address to another it do not get to the other email address, but if i send from my hotmail account it sends to the other email addresses ok, would any one know why this is , but if i use my built in email client to send email from my tiscali account it works fine from that one
    any help apprecitated
    I Love my N95 8gb

    See the other discussion:
    /t5/Messaging-Email-and-Browsing/Nokia-Messaging-SMTP-server-down-changed
    Same issue for 2+ weeks with no answer or recommendations from Nokia Tech. Support. I was looking for an upgrade to my N95 but with this frustration not in the issue but in the support, or lack of...Android here I come.

  • Why everytime i need to send mail from my phone it is asking for my apple ID ?

    how come since I updated my phone, every time I need to send new e-mail it is asking me for my apple ID ?

    Settings > Messages > Send &amp; Receive > Start New Conversations From > select your cell phone number.

  • TS4268 I cant send texts from my phone

    I cant get my mobile to send messages - and also when calling it doesn't show my number with i have already changed to show caller id !!
    I have reset the phone a few times now and nothing !!!!

    Hi, try to contat wiith your carrier and explain the problem, you may have broken your sim card or problems with your carrier

  • Cant send pics from my phone to another? Palm Treo 700wx

    I just bought this unit and have found no way to send pictures I have taken on it to another phone...it will only allow you to do this by email?  Am I missing something?  Help please
    Post relates to: Treo 700wx (Alltel)

    Do you know what program that is?
    Post relates to: Treo 700wx (Sprint)

  • Cant send SMS from I phone

    I had i phone 4 S and i could not send SMS
    now i buy new 5 S and facing same problem

    krupesh thakkar wrote:
    it is not carier problem
    yes it is.

  • Sending mail from alias accounts Sweden. iPhone.???????

    Sending mail from alias accounts Sweden.
    STILL cant send mail from my iPhone via one of my e-mail alias accounts???
    sooo much time has gone by
    so many updates to iPhone and my operating system
    new iPhone on the way here and...
    still cant send mail from my iPhone
    yes i can set up another account through a third party
    NO i dont want this. i expect to be able to use the mac mail i already have...
    anyone know whats going on?
    Have i missed apples solution to this.
    anyone know how its done and...
    please dont say sign up with someone else or create an account with someone else
    For the record yes i can use my mail from my iPhone BUT BUT BUT it shows my ORIGINAL email account address BAD BAD BAD.
    answer anyone!!!

    I have to agree with you , I too was disappointed to see that with IOS 4 on my iphone I still cant send from an alias. This is a feature thats available with the .me web access so why not the iphone mail app? If they can't do it, then at least let me be able to use .me via safari on the iphone and ipad.
    Joe
    Message was edited by: Joe Tye

  • Have problems sending mail from a secure wireless connection. but ok from starbucks

    I have several clients here at my marina all using different email providers and they all seem to have problems sending out mail from my secure wireless. They can recieve mail no problem. Now here is where it get weird. I added my gmail account to one of the problem iphones and same thing was happening, when i go to send out an email from my account on their phone it gets stuck trying to send mail. I compaired server setting on my phone to his and everything was that same, even turned off his server from fairpoint(the email he uses) and kept my gmail one and still couldnt send mail from his phone but worked fine on mine. Apple set up this individuals iphone/ipad so it make me think they did something when he had the accounts added. Any thoughts?

    look here for gmail accounts
    http://support.apple.com/kb/TS3058

Maybe you are looking for

  • External Display wil not work when I close my MacBook Pro

    Help! I'm using a Vizio LCD with Bluetooth Keyboard and Mouse and I'm trying to use just the display with the MacBook Closed and Powered, but as soon as I do that the Screen on the VIzio dies. I worked for a while but now it won't work anymore. I can

  • Macbook doesn't register TV

    Hi, I am trying to connect my mid-2010 Macbook Pro (running version 10.9.4 of OS X) to a brand new Magnavox TV. I am using an HDMI cord and a mini DisplayPort, both of which have worked in the past. When the TV is off, my computer recognizes the exte

  • Possible Problem for US N95 User Upgrading to Firm...

    On July 19, 2007 the new firmware version 12.0.013 for Nokia N95 became available through Nokia Software Updater for US product coded N95s. I installed it and only within 1-2 hours my phone messed up. It is now almost unusable. I am trying to figure

  • ABAP Run Time Error - Payroll

    Hi Experts, We have scheduled a background job for payroll simulation for South Africa, we are running it for all active employees, RPCALCWO, , it gives the dump error stating that

  • EventResult execute ---BulkEventResult execute both triggering

    Hi Gurus, i am facing strange issue, i have written a post process event handler i am setting a random user password for user, it works fine when do it from UI i can see EventResult execute is getting executed but as soon i run the trusted recon... E