Sending email sometimes lost, not sent

Sometimes when I compose a new email on my iPhone and send, the message compose screen disappears... and you think its sending the email... but if there are any issues with connectivity, the newly composed email is lost... and never sent. Considering the effort in typing a reasonable email on the iPhone, that is very annoying. I don't have setup issues, I can retrieve and sent email via my yahoo account - this is an occasional and unpredictable issue. Any thoughts?

Ok all, I don't know the best place to post this update... here is what I did to help my situation.
I completely deleted the pre-packaged Yahoo mail connection as naturally defined by choosing Yahoo from the list... this connection goes through Apple's servers and tries to front end the yahoo Pop servers with IMAP... or so it seems... this is so unreliable, its worse than not having anything at all!
I deleted that and set about setting up my yahoo email via the 'Other' option. I specified the Yahoo POP server directly, changed the SSL ports to match what Yahoo publish... and this config has now worked consistently for about a week... so far so good. This setup also has the advantage that I can use my Yahoo address for authentication, but can use my own domain as the sending and receiving address (I have a domain set up through Yahoo), so this is optimal.
Hope this helps all on this thread. The bottom line - dump that pre-packaged Yahoo config which goes through the Apple services and define a direct Pop client for Yahoo via the 'Other' option.
Let me know if this works for any who have expressed the same problems on this thread.

Similar Messages

  • HT201320 Added email to ipad can send email but can not get email message wrong password. Can some one help

    Added email to ipad can send email but can not receive.Message wrong password .Can some one help.Thanks

    No one here will know your password

  • Mail delivery failure messages for email I have not sent to contacts I do not know.

    I am receiving Mail delivery failure messages for emails I have not sent; they are addressed to contacts I've never heard of, many different. Apparently, this is some kind of spam but I don't know what to do about it.

    There is nothing you can do about it. It will stop at some point.
    http://en.wikipedia.org/wiki/Backscatter_%28email%29

  • Java program to send email from lotus notes

    Hello,
    Please anyone suggest me how to send email from lotus notes using java.
    Thanks.

    I don't understand the question. Are you asking:
    1. How do I send e-mail from Lotus notes manually? Press the Send button.
    2. How do I send e-mail from Java? Look into the Java Mail API. Doesn't require Lotus Notes (or any other e-mail client, for that matter).
    3. How do I send e-mail to a Lotus Notes address? Just send e-mail to the address (see # 2 above). Nothing special required just because the recipient uses Lotus Notes. FYI: I use Lotus Notes (though I hate it) because it's our company's standard & have written Java apps that send e-mails to Notes. The only time I've had to be aware the recipient was a Notes client was when I was sending HTML formatted messages; then I had to pay attention to the limitations of Notes' brain dead HTML parser.

  • Email sometimes does not send

    Hi Gurus,
    I am sending email and using the FM SO_NEW_DOCUMENT_ATT_SEND_API1.
    Why is it sometimes I can receive the email and sometimes I don't?
    Is there a configuration that filters the sending of emails?
    In transaction SOST, it the status is SENT (with green light), but I do not receive it.
    Also, why is the RECIPIENT and the STATUS_TEXT not the same? (in SOST). The recipient is my email address and the STATUS_TEXT has different email address.
    Thanks in advance.
    Benedict

    Hi Atish,
    Here is my code.
      wa_objbin = 'salem_marcial'.
      APPEND wa_objbin TO it_objbin.
    Creation of email subject
      CONCATENATE text-003 p_gjahr p_rpmax p_bukrs INTO lv_title
      SEPARATED BY c_unsc.
      wa_doc_data-obj_descr = lv_title.
      wa_doc_data-obj_langu = sy-langu.
    wa_doc_data-skip_scren = c_x.
      DESCRIBE TABLE it_objbin LINES gv_tab_lines.
      READ TABLE it_objbin INTO wa_objbin INDEX gv_tab_lines.
      wa_objhead = text-005. "2007_016_FR10_HFM_SFeRE
      APPEND wa_objhead TO it_objhead.
    Creating the entry for the compressed attachment
      wa_objpack-transf_bin = c_x.
      wa_objpack-head_start = 1.
      wa_objpack-head_num   = 1.
      wa_objpack-body_start = 1.
      wa_objpack-body_num   = gv_tab_lines.
      wa_objpack-obj_langu  = sy-langu.
      wa_objpack-doc_type   = c_dat.
      wa_objpack-obj_name   = c_att.
      wa_objpack-obj_descr  = lv_title.
      wa_objpack-doc_size   = gv_tab_lines * 250.
      APPEND wa_objpack TO it_objpack.
      IF gv_flag2 IS INITIAL.
        APPEND wa_objpack TO it_objpack.
        gv_flag2 = c_x.
      ELSE.
        IF wa_objpack-doc_size > lv_doctemp.
          REFRESH it_objpack.
          APPEND wa_objpack TO it_objpack.
        ENDIF.
        lv_doctemp = wa_objpack-doc_size.
      ENDIF.
      lv_size = wa_objpack-doc_size.
    Converts string to ftext format
      CALL FUNCTION 'SCMS_STRING_TO_FTEXT'
        EXPORTING
          text      = space
        TABLES
          ftext_tab = it_objbin.
    Converts ftext to binary format
      CALL FUNCTION 'SCMS_FTEXT_TO_BINARY'
        EXPORTING
          input_length = lv_size
        TABLES
          ftext_tab    = it_objbin
          binary_tab   = it_objbin2
        EXCEPTIONS
          failed       = 1
          OTHERS       = 2.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    Entering names in the distribution list
      wa_reclist-receiver = '[email protected]'.
      wa_reclist-express  = c_x.
      wa_reclist-rec_type = c_u.
      APPEND wa_reclist TO it_reclist.
    Sending the document
      CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
        EXPORTING
          document_data              = wa_doc_data
          put_in_outbox              = c_x
          commit_work                = c_x
        TABLES
          packing_list               = it_objpack
          object_header              = it_objhead
          contents_bin               = it_objbin2
          receivers                  = it_reclist
        EXCEPTIONS
          too_many_receivers         = 1
          document_not_sent          = 2
          operation_no_authorization = 4
          OTHERS                     = 99.
    Just to clarify, in the outbox (SAP), I can see only 1 attachment is attached. But when I emailed it to my email, I can see 2 attachments (with the MESSAGE.DAT that is not supposed to be emailed). I also used my yahoo account. It also received the MESSAGE.DAT.
    Is the message.dat done by SAP standard because I did not use any content_txt? ==> I don't need to write any texts in the email. Only an attachment is needed.
    Do I need to use the contents_txt so that SAP will understand that I don't need to use the body of the email?
    Thanks in advance.
    Benedict

  • Email displayed as not sent out (sticks in outbox) but delivered over and over

    Dear people of planet apple.
    When sending an email from my iPad I sometimes experience that the mail in shown as not being delivered (it stays in the Outbox) and the Pad tries to deliver it over and over which indeed works because the receipient is flodded with my email every minute until I realize this and manually delete the mail from the outbox.
    I had the feeling that this happens only whis mails that are frequently replied and grow longer and longer but just today I had the same issue with a relatively show mail.
    Any hints?
    Ideas (not verified, but possible):
    - Happens when sending while I do not have a good 3G internet connection
    - Happens only with a specific receipient

    I'd like to add that the idea of a bad internet connection causing may not be valid as yesterday I wrote a mail that got stuck but I realized this only two hours later. In the meantime I went home and was in my wlan (and it continued to spam the receipient).
    Somehow the Pad does not realize that the mail is sent .. maybe the feedback from one of the mailproviders is missing?

  • Sometimes I can send email, sometimes I can't...

    So, I've got the latest version of OSX and Mac Mail. I've checked with my ISP and the port used is not blocked.
    Sometimes, I can send email just fine. No problems.
    Other times, when I send email I get this error: Cannot send using the server <insert my outgoing mail server here>
    Oddly, if I close mail and then restart it - it will often send the emails.
    I've checked with my hosting company and the email servers are fine and running. If I do the "connection doctor" from inside mac mail, I get all green - connecting fine.
    Any ideas?

    If you refer to my posts of a today and a few days ago I've had the identical issue - I do not agree with the posting of the person that followed yours - It is something wrong somewhere - My ISP is Comcast and while they've been very helpful in working with me to solve it the problem persists - it seems to have gotten worse in recent weeks and maybe for the past month or so -
    It seems to be in the incoming port - I often have an "offline" reading when I check the preferences - then for no reason it will come back on line and everything will be ok for a while - I have gone directly to the web mail of Comcast and it works perfectly - the port #'s assigned by Comcast are often not working properly and when I change to other ports it will work for a short time - all very mysterious -
    Steve

  • One of my email accounts will not send email, and is not linked to data file.

    I have three email accounts set up with my Outlook 2010. All are POP3. All three accounts have been working fine, until the last day or so. One of my accounts will no longer allow me to send messages. When I go to my account settings, the two accounts that
    are working show the following:
    Selected account delivers new messages to the following locations:
    Email Address\Inbox
    in data file C:\...
    The one that doesn't work shows the following:
    Selected account delivers new messages to the following locations:
    My Name\Inbox
    The .ost data file for this email address is still in the same place, right next to the other two data files for the working accounts. For some reason, Outlook no longer has it linked to my account. How can I go about fixing this issue?
    Thanks.

    Hi Gwidion,
    Outlook 2010 and 2013 create PST per POP3 account. In simple, single PST file for single POP3 account. So, don’t be panic. Just change the location of the
    PST data file by following the given path in Outlook 2010:
    File >> Account Settings >>  Emails
    In the “Email” tab, choose the particular account which is not able to send emails and make a double click on it or click on
    “Change Folder” option. Finally, set the location of Email address.
    Hopefully it will help, otherwise simply recreate a new Outlook profile.
    For more:
    http://support.microsoft.com/kb/829918/en-us
    Thanks
    Clark Kent

  • Mac Mail sends email okay, does not receive

    For a few days, I have been unable to receive email to my Inbox (using Mail to check yahoo via IMAP). I have been able to send just fine (as verified by logging in at yahoo.com). After reading other people's notes, I have tried several things, such as taking offline, then back online. It seems I only have the problem with my Inbox (it appears that I am getting bulk mail just fine), but I could not "rebuild" the Inbox (under "Mailbox") as it is greyed out. I have also tried deleting the folders in my Mail library and starting over. It is building up all the other mailboxes now, but not the Inbox.
    What could cause just the Inbox to stop working (and receiving messages) and how can I fix?  Thank you.

    Troubleshooting Apple Mail
    What does Mail/Window/Connection Doctor Show? If the server is red, select it and look at the Show Details box.
    Troubleshooting sending and receiving email messages
    Troubleshooting sending email messages
    SMTP servers keep going offline

  • Sending Email Tutorial Does Not Work

    Has anyone been able to successfully complete the "Sending Email From a Web Application" tutorial?
    I am able to Build and Deploy, but receive a "Class Not Found" error on deployment.
    Win2K sp3, 1Gig Ram 3 Gigs Free Disk
    I am using my own email account for both To: and From: on our Exchange email server.
    Thanks in advance.
    Clay

    Make sure everything you need is in your classpath.
    Hope this helps,
    - D.t.O

  • Program used to send email, but could not find it through tcode SOST ,why?

    i write an program which used to send email, but the config is not setup, so team leader told me that if my program is right, i could find the email status through tcode SOST, if the status is 'waiting for sending' , so the program is ok. but after test my program, i could not find the email status through Tcode SOST, (both receiption and document tabals are having the rigth content), so i don't know what is wrong with my program. is there anyone encounter this problem?

    hi: Rajvansh Ravi
    i use tcode to SCOT to find the screen as follow:
                          completed     error         in transit   waiting
    DE1(100)                  0           8               0            3(which not used my program execute)
          fax                     0           0               0            0
          int                      0           8               0            3
              w/o nodes       0           6(MESSAGE:xs826)0       
               SMTP            0           2               0        
          X40                    0           0               0            0
          RML                   0           0               0            0
          PAG                  0           0               0            0
          PRT                   0           0               0            0
    ok, the error form node W/0 is execute by my program, and i check the configue that ' *' is  there.
    so, what is wrong here?
    thanks: juzi

  • My question disappeare​d - need help with sending email - option is not there

    can not send email from blackberry from my aol or hotmail accounts. I can send from my work email .???

    Didn't disappear, it's right here, and answered.
    no option to send email on aol or hotmail
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • I only want to send emails from mail (not receive)

    I am apprehensive in setting up my Mail because I don't want it to import any emails from my online email account. I don't want all that stuff on my hard drive and I like to access it online from whatever computer.
    Is there a way to set up your email account so that you can only email out, but not receive/download the emails on to your computer?

    Set up your account, have it Enabled, but do not select to have it included when automatically checking for new messages, and also click on Mailbox in the menubar and take the account Offline. In Mail, and Offline account can be used to send, but will not collect new messages. There are a few providers that require you to have at least logged into the serve one time, and authenticated.
    Ernie

  • "Send Email to Handheld" not available under Messages- ​Options- E​mail Settings

    Hi everyone, I recently got a 8830 and wanted to find out how to temporarily disable email push. The most common answer is to toggle the "Send Email to Handheld" option to "No". For some reason I don't have this option...can anyone help? I am with Bell in Ontario. Thanks in advance.

    That option is on your BIS account.
    https://bis.na.blackberry.com/html?brand=bell
    Otherwise, on your handheld, you can go to Manage Connections  and disable the Mobile Network. 
    Upon re-enabling that option, you will get a flood of the emails you have not received while off the network.
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Send email to lotus notes

    Dear All,
    First of all I don't know if this is the correct forum but I have not seen a specific forum for oracle 8 so I posted the message in this forum.
    I have stored into a table Lotus Notes address and messages.
    I want to schedule a job on Oracle Server that send messages to a Lotus Notes Server.
    Lotus Notes version is 4.6.x and Oracle database is 8.0.5 EE.
    Any suggestion are welcome.
    Bye

    Hi,
    If you want to be able to send email to the distribution list in Lotus Notes from SharePoint, you
    can set the SMTP service address of Lotus Notes server in Central Administration->System Settings->Configure Outgoing email settings->Outbound SMTP Server.
    And you need to set the Lotus Notes to accept anonymous email.
    Here are some similar threads for you to take a look:
    https://social.technet.microsoft.com/Forums/office/en-US/4f40f6de-7c1e-4543-9e48-2058a95ce468/email-setting-configuration-for-domino-server-85?forum=sharepointgeneralprevious
    https://social.technet.microsoft.com/Forums/en-US/04bf7b7a-8797-4e46-b3ca-bddbe5d6d9ba/sharepoint-foundation-lotus-notes-connector-for-outgoing-smtp-mails-?forum=sharepointgeneralprevious
    Thanks,
    Victoria
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Victoria Xia
    TechNet Community Support

Maybe you are looking for

  • How do I change the tab background color in Firefox 4?

    I just upgraded to Firefox 4. Tabs are now fine black font on dark grey background -- very hard to read. How do I change the tab background color? I have searched and the closest I can come is some instructions for modifying .css files, and it is not

  • Replacing Alum. G4 15" Inverter Board

    Hello, The backlight on my G4 Aluminum 15" is malfunctioning again. I got the inverter board replaced on warranty about a year ago, but now it's the same problem and my warranty is up. I'm fairly certain it's the inverter board, as external displays

  • XML converted to string - encoding lost?

    Hi, I am using a socket to obtain xml data. Because it is a continuous stream, I need to check for <?xml version...> in order to split the data into parsable chunks because the parser can only parse one xml file at a time. In order to do this I use a

  • Kernel Panic on Parental Control

    Hi! I have a problem about Kernel Panic. In my MacBook Pro I activated the Parental Control of my Guest account and when I open some websites using Safari (when I use Firefox it doesn't happens) the Kernel Panic message appears, but when I disable th

  • Database 12C upgrade

    Hi all , We are in RAC in Windows 2008 R2 in 64 bit machine. Our  grid and database version is 11.2.0.3. My question is that If i upgrade my grid infrasturcture to 12.1,0 then will all my rac instances be PDB database under one CDB  automatically? 11