Sending email problem with my iPhone 4

I am having an issue sending emails.  This propblem is new.  i can send an email to one of my own email accounts but when I am trying to send them to someone else, it always comes up as the server rejected their address.  Any ideas on what I need to do?  Thanks!

Delete your account from Mail and add it again

Similar Messages

  • Sending email - problems with text in email body

    Hello all,
    for sending emails I use the FM from Thomas Jung (<a href="http:///people/thomas.jung3/blog/2004/09/08/sending-e-mail-from-abap--version-610-and-higher--bcs-interface:///people/thomas.jung3/blog/2004/09/08/sending-e-mail-from-abap--version-610-and-higher--bcs-interface).
    Everything works fine, except that the text I attach in documents-content_text doesn't appear as a normal text in the email body but within an .EXT-attachment. Should this be a TXT attachment?
    E.g. when I send the text 'Hello World' the email arrives with an attachment 'Hello World.EXT'.
    Did anyone have the same problem? What's wrong?
    Thanks for your help.
    Regards
    Joschi

    Try this it works fine for me,
    METHOD email_result_as_pdf.
        DATA: lo_document_bcs    TYPE REF TO cl_document_bcs VALUE IS INITIAL,
              lo_send_request    TYPE REF TO cl_bcs VALUE IS INITIAL,
              lo_sender          TYPE REF TO if_sender_bcs VALUE IS INITIAL,
              lo_recipient       TYPE REF TO if_recipient_bcs VALUE IS INITIAL,
              lo_cx_document_bcs TYPE REF TO cx_document_bcs VALUE IS INITIAL,
              lo_cx_send_req_bcs TYPE REF TO cx_send_req_bcs VALUE IS INITIAL,
              lo_cx_address_bcs  TYPE REF TO cx_address_bcs VALUE IS INITIAL.
        DATA: li_message_body     TYPE bcsy_text VALUE IS INITIAL,
              li_att_content_text TYPE soli_tab,
              lw_att_content_text TYPE soli.
        DATA: lv_result         TYPE string,
              lv_send           TYPE adr6-smtp_addr
                                     VALUE '[email protected]',
              lv_sent_to_all(1) TYPE c VALUE IS INITIAL.
    * Create Object
        lo_send_request = cl_bcs=>create_persistent( ).
    * Add Contents to Mail Body
        APPEND 'Dear Sir,<BR>' TO li_message_body.
        APPEND ' ' TO li_message_body.
        APPEND 'Please find the Report contents enclosed.<BR>' TO li_message_body.
        APPEND ' ' TO li_message_body.
        APPEND 'Thank You,<BR>' TO li_message_body.
    * Create a Document
        TRY.
            CALL METHOD cl_document_bcs=>create_document
              EXPORTING
                i_type    = 'HTM'
                i_text    = li_message_body
                i_subject = 'New ALV Sample Report'
              RECEIVING
                result    = lo_document_bcs.
          CATCH cx_document_bcs INTO lo_cx_document_bcs.
            lo_cx_document_bcs->if_message~get_text(
                                  RECEIVING
                                      result = lv_result ).
            MESSAGE lv_result TYPE 'E'.
        ENDTRY.
    * Populate the data to the Document Table
        LOOP AT i_sbook INTO w_sbook.
          CONCATENATE
            w_sbook-carrid
            w_sbook-connid
            w_sbook-fldate
            w_sbook-bookid
            w_sbook-customid
            w_sbook-custtype
            w_sbook-smoker
            w_sbook-wunit
            w_sbook-invoice
            w_sbook-class
            w_sbook-forcurkey
            w_sbook-loccurkey
            w_sbook-order_date
            w_sbook-counter
            w_sbook-agencynum
            w_sbook-cancelled
            w_sbook-reserved
            w_sbook-passname
            w_sbook-passform
            w_sbook-passbirth
            INTO lw_att_content_text-line
            SEPARATED BY cl_abap_char_utilities=>horizontal_tab.
          CONCATENATE cl_abap_char_utilities=>cr_lf lw_att_content_text-line
                      INTO lw_att_content_text-line.
          APPEND lw_att_content_text TO li_att_content_text.
        ENDLOOP.
    ** Add the attachment to the document
        TRY.
            CALL METHOD lo_document_bcs->add_attachment
              EXPORTING
                i_attachment_type    = 'RAW'
                i_attachment_subject = 'New ALV Sample Report'
                i_att_content_text   = li_att_content_text.
          CATCH cx_document_bcs INTO lo_cx_document_bcs.
            lo_cx_document_bcs->if_message~get_text(
                                  RECEIVING
                                      result = lv_result ).
            MESSAGE lv_result TYPE 'E'.
        ENDTRY.
    * Set the document to the Send Request
        TRY.
            CALL METHOD lo_send_request->set_document
              EXPORTING
                i_document = lo_document_bcs.
          CATCH cx_send_req_bcs INTO lo_cx_send_req_bcs.
            lo_cx_send_req_bcs->if_message~get_text(
                                  RECEIVING
                                      result = lv_result ).
            MESSAGE lv_result TYPE 'E'.
        ENDTRY.
    * Create Sender
        TRY.
            CALL METHOD cl_cam_address_bcs=>create_internet_address
              EXPORTING
                i_address_string = lv_send
              RECEIVING
                result           = lo_sender.
          CATCH cx_address_bcs INTO lo_cx_address_bcs.
            lo_cx_address_bcs->if_message~get_text(
                          RECEIVING
                              result = lv_result ).
            MESSAGE lv_result TYPE 'E'.
        ENDTRY.
    * Add Sender to Mail
        TRY.
            CALL METHOD lo_send_request->set_sender
              EXPORTING
                i_sender = lo_sender.
          CATCH cx_send_req_bcs INTO lo_cx_send_req_bcs.
            lo_cx_send_req_bcs->if_message~get_text(
                                  RECEIVING
                                      result = lv_result ).
            MESSAGE lv_result TYPE 'E'.
        ENDTRY.
    * Create Receipient
        lv_send = '[email protected]'.
        TRY.
            CALL METHOD cl_cam_address_bcs=>create_internet_address
              EXPORTING
                i_address_string = lv_send
              RECEIVING
                result           = lo_recipient.
          CATCH cx_address_bcs INTO lo_cx_address_bcs.
            lo_cx_address_bcs->if_message~get_text(
                          RECEIVING
                              result = lv_result ).
            MESSAGE lv_result TYPE 'E'.
        ENDTRY.
    * Add Receipient to Mail
        TRY.
            CALL METHOD lo_send_request->add_recipient
              EXPORTING
                i_recipient = lo_recipient
                i_express   = 'X'.
          CATCH cx_send_req_bcs INTO lo_cx_send_req_bcs.
            lo_cx_send_req_bcs->if_message~get_text(
                                  RECEIVING
                                      result = lv_result ).
            MESSAGE lv_result TYPE 'E'.
        ENDTRY.
    * Set Send Immediately
        TRY.
            CALL METHOD lo_send_request->set_send_immediately
              EXPORTING
                i_send_immediately = 'X'.
          CATCH cx_send_req_bcs INTO lo_cx_send_req_bcs.
            lo_cx_send_req_bcs->if_message~get_text(
                                  RECEIVING
                                      result = lv_result ).
            MESSAGE lv_result TYPE 'E'.
        ENDTRY.
    * Send Mail
        TRY.
            CALL METHOD lo_send_request->send
              EXPORTING
                i_with_error_screen = 'X'
              RECEIVING
                result              = lv_sent_to_all.
            COMMIT WORK.
          CATCH cx_send_req_bcs INTO lo_cx_send_req_bcs.
            lo_cx_send_req_bcs->if_message~get_text(
                                  RECEIVING
                                      result = lv_result ).
            MESSAGE lv_result TYPE 'E'.
        ENDTRY.
    * Inform User
        IF lv_sent_to_all EQ 'X'.
          COMMIT WORK AND WAIT.
          MESSAGE 'Mail Sent Successfully' TYPE 'I'.
        ELSE.
          MESSAGE 'Error Sending Mail to External Id' TYPE 'E'.
        ENDIF.
      ENDMETHOD.                    "email_result_as_pdf
    Regards
    Kathirvel

  • TS3276 My o2 email account does not work when sending from my MAC it will accept incoming mail but not send it gives me a message that  o2 account (offline) my mac I have no problem with my iPhone  or mac laptop. any suggestions please.

    My o2 email account does not work when sending from my MAC it will accept incoming mail but not send it gives me a message that  o2 account (offline) my mac I have no problem with my iPhone  or mac laptop. any suggestions please.

    Sorry for the delay...
    I did what you've told me, new account and manually copied my files from Time Machine. I had lots of permissions problems, but at the end, almost everything is in order... It seems it had to be with some of the Apple Preferences, but I can't be sure, as most of them were dumped to the trash can.
    I still don't have my Mail Rules back, unfortunately, although I did goggled some. It is a pity, as I had around 30 or 40 of them, getting my mail in order to each of its mailboxes, but it is a small price as the rest doesn't show the before syntoms.
    Thanks for the help, anyway!!

  • I have a problem with my iphone 4. My 3G always stays activated but I lose my network signal. The bars all get lost and I'm not able to receive / send sms, mms or phone calls. Could you guys please help me fix this problem? Ios 5.1.1

    I have a problem with my iphone 4. My 3G always stays activated but I lose my network signal. The bars all get lost and I'm not able to receive / send sms, mms or phone calls. Could you guys please help me fix this problem? Ios 5.1.1

    I haven't gotten a new sim card because the problem has been presenting itself in various cards not only mine. So far, all I've done is reset my network settings.
    Last night, I turned off the 3G tab and it had all the signal bars. Today, I did the network reset and it's working apparently. But like I said before, previously the bars just disappear and the iphone only has the 3G activated.

  • I have problem with my iphone 5 i forget i cloud id and i make restore now hi tell me u have to activate iphone i don`t no about email and passord

    i have problem with my iphone 5 i forget i cloud id and i make restore now hi tell me u have to activate iphone i don`t no about email and passord

    Hello my bro
    i call them but when i call hi say the number is rong
    please help me

  • Hi there! I have a problem with my iphone 4! i can't share my contacts because its not showing the share contact bar at all-it only shows "send message"!! i have the ios 6.1.3

    Hi there! I have a problem with my iphone 4! i can't share my contacts because its not showing the share contact bar at all-it only shows "send message"!! i have the ios 6.1.3

    Try restarting your phone while you hold down the power AND the sleep button at the same time.
    This defenitly is a software bug and normally there should be this button.

  • Hi - I cannot upload my emails through the mail icon.  The first time I tried it only loaded very old emails, I then tried the whole process again and it has not imported a single email.  I use hotmail, and have had no problems with my iPhone or iPad.

    Hi - I cannot upload my emails through the mail icon.  The first time I tried it only loaded very old emails, I then tried the whole process again and it has not imported a single email.  I use hotmail, and have had no problems with my iPhone or iPad.  So the only way I can check my emails on my mac is to go through the internet.  Can anyone help?

    Hello, do you mean Download?
    In Mail's Window Menu, choose Connection Doctor, any red dots for status, if so what is the message?
    Then click the Show Details button & Check again.

  • I'm having an unusual problem with my iphone 4S. When I'm making a call, it suddenly sounds like my call has been invaded by aliens! Why is it doing this? I'm also having problems sending texts. Sometimes it sends sometimes it doesn't.

    I'm having an unusual problem with my iphone 4S. When I'm making a call, it suddenly sounds like my call has been invaded by aliens! Why is it doing this? I'm also having problems sending texts. Sometimes it sends sometimes it doesn't. What is going on? Can it be fixed? I'm really not liking this new phone!!!!

    Could be an issue with your Carrier and/or location...
    The Basic Troubleshooting Steps are:
    Restart..  Reset..  Restore from Backup...  Restore as New...
    Try a Reset...
    Press the sleep/wake button & home button at the same time, keep pressing until you see the Apple logo, then release the buttons...
    http://support.apple.com/kb/ht1430

  • Anyone have a problem with the iPhone 6 freezing when you're trying to send a text?

    I seem to be having a couple of problems with the iPhone 6 or possibly the update 8.1.2.  Sometimes when I turn the phone horizontally to text, nothing happens and it only works if I turn it back vertically.  Also, sometimes when I receive a call from someone who is already on my contact list, only the number shows up and not the name or picture connected with that contact.  It appears when I answer, but sometimes I don't want to answer if I don't recognize the number.
    Anyone else having these issues?  Do we need another update to the software to fix these problems?

    How much available storage do you have on your iPhone? You can find this at Settings>General>Usage
    If your available space is measured in megabytes (MB) then it is causing problems for your phone's operating system.
    If your available space is measured in gigabytes (GB) then that isn't the source of the problems and you can move to some other troubleshooting steps. First, try a simple restart  (holding the sleep wake button for about 5 seconds until the power off slider appears).
    If the problems reoccur after you've restarted the phone, I recommend Reset All Settings, which is located in Settings>General>Reset

  • How to delete a "sending" email on the the iphone

    While up in Canada, I couldn't send emails even when I added the Shaw Cable outgoing smtp server. Shaw support said it is a problem with the iphones. They may be correct, since I could send outgoing using the same smtp server on an imac and macbook using mail with that smtp server. Incoming email was ok. So, I had attempted to send 3 emails, and for 3 days each time I woke up may iphone, it attempts to send, but can't. No outgoing email box to open and delete these messages!
    Crossed the Canada/Washington State border, and two of the emails sent fine (puzzled recipients, getting them 3 days late). Four days later my iphone keeps trying to send one last email, no success. Otherwise, everything back to normal, sending and receiving email in two .mac accounts, and two separate non-mac accounts. My battery is being drained by the constant attempt to send this remaining email. Unlike Mail on the Mac, the iphone has no place that I can find where I can delete this pending email. It's in purgatory! Tried reboot, etc. Any advice?

    That took care of it. A pain, however.
    Thanks for the advice.
    Daniel

  • Trouble sending email from iPad and iPhone

    I'm haing trouble sending email from iPad and iPhone 4. No trouble receiving email, just sending!

    If this happened in the past hour or so with dot-mac or dot-me mail, the iCloud servers were having a problem.

  • Problems with my iPhone 3g remains in spite of 2.0.2 would a restore help??

    Hey I have several problems with my iPhone, all of which i would have thought would dissappear as Apple updated the firmware, but it hasn´t so far.
    My problems are that the keyboard is lagging every fifth time that I use it, the letters appear about 1 second after i pressed the key on the keyboard. It happens when I am writing SMS as well as E-mails.
    The contacts app takes about 4 seconds to start, and when I am scrolling it is lagging quite a bit.
    When I listen to music it suddenly stops, even if I haven´t touched it, then I have to press play to get it to start again. If it use the volume buttons to turn the sound up or down it also sometimes stops the music. When i recieve calls, mails or messages the music fades down, but afterwards it doesn´t start again. It only starts when I "wake up" the phone and unlock it.
    Last but not least the 3g signal is really not that stable and often turns back to edge.
    I have read lots of posts where people talk about how the newer firmware updates have resolved most of their problems, but I haven´t experienced any changes after I have updated. It almost seems like it doesn´t really "notice" the new firmware.
    I have been thinking about doing a restore, but if I use the latest back-up it would most likely have the same issues as now right?
    If I do a complete restore and delete everything I will have to spend a lot of time getting all the content back on the phone and I don´t know if it will help at all.
    My question is if anyone here have the same problems as me, if they don´t notice any differences after updating the firmware as well?
    On top of that I would like to know if anyone here have experienced any positive effects of doing a full restore? Has it helped resolving any of your problems?
    Thanx a lot

    On 2.0.2 with a full restore. Still experiencing all of the issues you mention except the iPod related stuff.
    I am really losing patience with apple and their silence about all of these problems.
    Not sure how much longer I am willing to put up with it before i send it back.

  • Hi i have a problem with my iphone 3gs. i updated the software to ios 6 but now when trying to activate the phone it comes up with a message saying that the activation server is currently unavailable, also it always says no sim! what can i do?

    i have an activation problem with my iphone 3gs. i updated the software to io6 using itunes but now the phone will not complete activation because it keeps saydin the activation server is not available and to re try later. ive been trying for 6 hours but it still wont activate. if i try using itunes then it sayd no sim inserted when there is one inserted, what can i do?

    You are right, but how could i send it to Apple? when the phone company first replaced my iphone they had in stock alots of iphones and they just sent mine back to Apple and gave me a new one, so all i did is to give them my phone, but now how could i sent it to Apple? and i cant send it by myself, and the store wont do that, its a lost for them.. so sending it to Apple wasnt an option from the begining.
    and for the record, i dont think the store where i bought it is an authorized shop.. its just a store who boughts phone's from Apple in a low price and sells it in much more money..

  • Hi guys.Got a problem with my iPhone 5. I bought it in a shop 4 month ago. After I got a visitor with iOS 7 on his phone he would like to charge his phone with my Laptop and cable.But when he plugged it in it showed a message wich says: " This cable or ac

    Hi guys.Got a problem with my iPhone 5. I bought it in a shop 4 month ago. After I got a visitor with iOS 7 on his phone he would like to charge his phone with my Laptop and cable.But when he plugged it in it showed a message wich says: " This cable or accessory is not certified and may not work reliably with this phone".
    How is this possible? I then phoned the shop and told them my problem. When I gave them the details I also found out that the imei No. in the iPhone is the same as on the original box. But the the Serial numbers are different. I already try the support centre but I’m over the 90 days.And there is no Apple Store in Namibia. I hope someone can help me here. Thanks, Ralfar

    You are right, but how could i send it to Apple? when the phone company first replaced my iphone they had in stock alots of iphones and they just sent mine back to Apple and gave me a new one, so all i did is to give them my phone, but now how could i sent it to Apple? and i cant send it by myself, and the store wont do that, its a lost for them.. so sending it to Apple wasnt an option from the begining.
    and for the record, i dont think the store where i bought it is an authorized shop.. its just a store who boughts phone's from Apple in a low price and sells it in much more money..

  • Problem with non iPhone users receiving my text sent pictures. Can I make them smaller files?

    Problem with non iPhone users receiving my text sent pictures.  Can I make them smaller files? I know that is possible for email sent pics.

    My bad,  It was a Verizon problem.  When they upgraded my phone they were supposed to remove all blocks on messaging . Found out they did not do this.  All messaging now works.  Thanks for listening.

Maybe you are looking for

  • Dreamweaver Templates and Include files

    Hi, I am using dreamweaver templates so that my users can create new pages on our Intranet using Contribute. When I create a template and try and use an inculde file for the menu systems I get an error. I am trying to use the following code to inculd

  • How to delete customize Implementing Class for CL_EXM_IM_FI_DOCUMNT_CHECK

    Hi All, I used se19 to create Enhancement Spot : ARC_FI_DOCUMNT to ZARC_FI_DOCUMNT, and I created a BAdI ZFI_DOCUMNT_CHECK from FI_DOCUMNT_CHECK in ZARC_FI_DOCUMNT, then I implemented a Implementing Class ZCL_EXM_IM_FI_DOCUMNT_CHECK for method IF_EX_

  • 2 Airport Extermes, WDS, Macbook Pro and apple tv.

    So i have 1 extreme connected to the cable modem. It is setup as the main, a second is setup as remote and there is also a PS3 plugged into it. I just upgraded my macbook pro to the N wireless card. The network is 802n (b/g) compatible. There are no

  • Multiple users on reinstalling windows

    i originally had windows 8 installed in my laptop. i installed hp protecttools n set up personalised account where i wd use finger print to unlock my pc . everything ws working fine until my laptop started slowing down.i decided to reinstall windows,

  • GPIB to USB in 16 Bit Dataformat

    Do you support the 16 Bit Mode in your currently SW 2.1? I used your GPIB-USB-A to connect our Spectrum Analyzer (Rohde & Schwarz, FSP) with our Windows 98 Laptop. This works and could control the Spectrum Analyzer bei commands. But it was not possib