I have problem send any email from iPad2

I have a very weird situation.
I had this iPad2 for  a few months and was able to receive and send email using 3 email accounts, from gmail, yahoo and hotmail without any problem.
Howeverm after I came back from a trip, I could only receive email, but cannot send any email from any of these accounts at all!
I am using WIFI. I have deleted all email accounts, turned off the ipad2, and started over a couple of times.
I tried to recreate these account again one by one. After added one account, I tested it only to see no email can be sent!
THere is no error message, no any information. All I know is the email I sent from my iPad disappeared!
Any one here can help?
Thanks!

Disabling email scanning didn't fix it. I can open the Mozilla email client and it immediately tries to connect to the inbound AT&T mail server but then just sits there with no response. If I try to send a message same thing, tries to connect to outbound AT&T server but nothing. One of the options in the support doc said to remove the saved passwords and when the client restarts it will ask you to save your password again. The client never makes a connection to the server so it never has a chance to authenticate. Its almost like AT&T disabled their POP server.

Similar Messages

  • Can not send any email from IPhone 5, I get......A copy has been placed in

    Can not send any email from IPhone 5, I get......A copy has been placed in
    your Outbox. The sender address "jvcrews@" has been rejected
    by the server.
    <Email Edited by Host>

    I have the same problem, but I can send and receive e-mails from my home base.  When out of the range of my home I get this message: "
    A copy has been placed in your outbox.  The sender address: "[email protected]" was rejected by the server."

  • TS3899 I can't send any emails from my iphone when I was outside of my house

    I cannot send any emails from my iphone when I'm out.
    How can I solve this problem?

    According to AOL they support IE, Firefox, and Safari: http://help.aol.com/help/microsites/microsite.do?cmd=displayKC&docType=kc&extern alId=73451
    Have you tried contacting there support to see if they are aware of the issue: http://help.aol.com/help/microsites/microsite.do

  • I have problem sending a email ..spool not created using custom FM

    Hi experts,
    i have problem sending a email ..spool not created using custom FM...this the custom FM
    * Send email notification
          lv_subject = text-037.
          lv_attachment = text-038.
          CALL FUNCTION 'Z_SEND_EMAIL_FROM_SPOOL'
            EXPORTING
              email1            = lv_email1
              email2            = lv_email2
              email3            = lv_email3
              subject           = lv_subject
              attachment_name   = lv_attachment
            EXCEPTIONS
              spool_not_created = 1
              OTHERS            = 2.
    Source code
    this is the source code for this FM
    IF sy-batch EQ 'X'.
        PERFORM get_job_details.
        PERFORM obtain_spool_id.
        PERFORM convert_spool_to_pdf.
        IF sy-subrc IS NOT INITIAL.
          MESSAGE e040(zhrcd) RAISING spool_not_created.
        ENDIF.
        PERFORM process_email USING email1
                                    email2
                                    email3
                                    subject
                                    attachment_name.
        WAIT UP TO 5 SECONDS.
        SUBMIT rsconn01 WITH mode   = 'INT'
                        WITH output = 'X'
                        AND RETURN.
      ENDIF.....
    Please let me know
    Edited by: Thomas Zloch on Nov 16, 2010 5:53 PM - please use code tags

    Hi srinivas ,
    Could you please Check
    FORM summary_report .
      DATA: lv_success TYPE i,
              lv_error TYPE i,
              lv_total TYPE i.
      DESCRIBE TABLE gt_data LINES lv_success.
    DESCRIBE TABLE gt_error LINES lv_error.
      DESCRIBE TABLE gt_message LINES lv_error.
    lv_total = lv_success + lv_error.
      lv_total = lv_success.
      gwa_summary-record = text-008."Number of Successful records.
      gwa_summary-number = lv_success.
      APPEND gwa_summary TO gt_summary.
      gwa_summary-record = text-009."Number of error records'.
      gwa_summary-number = lv_error.
      APPEND gwa_summary TO gt_summary.
      gwa_summary-record = text-010."Total number of records processed.
      gwa_summary-number =  lv_total.
      APPEND gwa_summary TO gt_summary.
    CLEAR gt_fieldcat.
      gwa_fieldcat_summ-col_pos = 1 .
      gwa_fieldcat_summ-fieldname  = 'RECORD'.
      gwa_fieldcat_summ-tabname = 'GT_SUMMARY'.
      gwa_fieldcat_summ-seltext_l  = text-011."Records
      gwa_fieldcat_summ-outputlen = '70'.
      APPEND gwa_fieldcat_summ TO gt_fieldcat_summ.
      gwa_fieldcat_summ-col_pos = 2 .
      gwa_fieldcat_summ-fieldname  = 'NUMBER'.
      gwa_fieldcat_summ-tabname = 'GT_SUMMARY'.
      gwa_fieldcat_summ-seltext_l  = text-012."Number
      gwa_fieldcat_summ-outputlen = '10'.
      APPEND gwa_fieldcat_summ TO gt_fieldcat_summ.
    ENDFORM.                    " SUMMARY_REPORT
    *&      Form  ERROR_REPORT
    FORM error_report .
    gt_fieldcat_err[] = gt_fieldcat[].
      gv_fieldcat_err-col_pos = 1.
      gv_fieldcat_err-fieldname  = 'PERNR'.
      gv_fieldcat_err-tabname = 'GT_MESSAGE'.
      gv_fieldcat_err-seltext_l  = text-070."Employee Number
      gv_fieldcat_err-outputlen = '20'.
      APPEND gv_fieldcat_err TO gt_fieldcat_err.
      gv_fieldcat_err-col_pos = 2.
      gv_fieldcat_err-fieldname  = 'MESSAGE'.
      gv_fieldcat_err-tabname = 'GT_MESSAGE'.
      gv_fieldcat_err-seltext_l  = text-071."Error Message
      gv_fieldcat_err-outputlen = '80'.
      APPEND gv_fieldcat_err TO gt_fieldcat_err.
    ENDFORM.                    " ERROR_REPORT
    *&      Form  FINAL_REPORT
    FORM final_report .
      DATA:lv_layout TYPE slis_layout_alv,
             lt_events_summ TYPE slis_t_event,
             lv_events_summ LIKE LINE OF lt_events_summ,
             lt_events_det TYPE slis_t_event,
             lv_events_det LIKE LINE OF lt_events_det,
             lt_events_err TYPE slis_t_event,
             lv_events_err LIKE LINE OF lt_events_det,
             lt_events_msg TYPE slis_t_event,
             lv_events_msg LIKE LINE OF lt_events_det.
      lv_events_summ-name = 'TOP_OF_PAGE'.
      lv_events_summ-form = 'TOP_OF_PAGE1'.
      APPEND lv_events_summ TO lt_events_summ.
      lv_events_det-name = 'TOP_OF_PAGE'.
      lv_events_det-form = 'TOP_OF_PAGE2'.
      APPEND lv_events_det TO lt_events_det.
      lv_events_err-name = 'TOP_OF_PAGE'.
      lv_events_err-form = 'TOP_OF_PAGE3'.
      APPEND lv_events_err TO lt_events_err.
      lv_events_msg-name = 'TOP_OF_PAGE'.
      lv_events_msg-form = 'TOP_OF_PAGE4'.
      APPEND lv_events_msg TO lt_events_msg.
      CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_INIT'
        EXPORTING
          i_callback_program = sy-repid.
      CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_APPEND'
        EXPORTING
          is_layout                        = lv_layout
          it_fieldcat                      = gt_fieldcat_summ
          i_tabname                        = 'IT_SUMMARY'
          it_events                        = lt_events_summ
      IT_SORT                          =
      I_TEXT                           = ' '
        TABLES
          t_outtab                         = gt_summary
    EXCEPTIONS
      PROGRAM_ERROR                    = 1
      MAXIMUM_OF_APPENDS_REACHED       = 2
      OTHERS                           = 3
    IF CHK_DTL IS NOT INITIAL.
      CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_APPEND'
        EXPORTING
          is_layout                        = lv_layout
          it_fieldcat                      = gt_fieldcat
          i_tabname                        = 'gt_data'
          it_events                        = lt_events_det
      IT_SORT                          =
      I_TEXT                           = ' '
        TABLES
          t_outtab                         = gt_data
    EXCEPTIONS
      PROGRAM_ERROR                    = 1
      MAXIMUM_OF_APPENDS_REACHED       = 2
      OTHERS                           = 3
    ENDIF.
    CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_APPEND'
       EXPORTING
         is_layout   = lv_layout
         it_fieldcat = gt_fieldcat_err
         i_tabname   = 'gt_error'
         it_events   = lt_events_err
       TABLES
         t_outtab    = gt_error.
    CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_APPEND'
       EXPORTING
         is_layout   = lv_layout
         it_fieldcat = gt_fieldcat_msg
         i_tabname   = 'gt_message'
         it_events   = lt_events_msg
       TABLES
         t_outtab    = gt_error.
      CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_APPEND'
        EXPORTING
          is_layout   = lv_layout
          it_fieldcat = gt_fieldcat_err
          i_tabname   = 'gt_message'
          it_events   = lt_events_err
        TABLES
          t_outtab    = gt_message.
    IF GT_MESSAGE[] IS NOT INITIAL.
      CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_APPEND'
        EXPORTING
          is_layout   = lv_layout
          it_fieldcat = gt_fieldcat_msg
          i_tabname   = 'gt_message'
          it_events   = lt_events_msg
        TABLES
          t_outtab    = gt_message.
    ENDIF.
      CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_DISPLAY'
    EXPORTING
       i_interface_check             = ' '
      IS_PRINT                      =
       i_screen_start_column         = 0
       i_screen_start_line           = 0
       i_screen_end_column           = 0
       i_screen_end_line             = 0
    IMPORTING
      E_EXIT_CAUSED_BY_CALLER       =
      ES_EXIT_CAUSED_BY_USER        =
    EXCEPTIONS
      PROGRAM_ERROR                 = 1
      OTHERS                        = 2
    ENDFORM.                    " FINAL_REPORT
    *&      Form  top_of_page
          text
    FORM top_of_page1.                                          "#EC CALLED
      WRITE text-013."SUMMARY REPORT.
    ENDFORM.                    "top_of_page
    *&      Form  top_of_page2
          text
    FORM top_of_page2.                                          "#EC CALLED
      WRITE text-014."DETAIL REPORT.
    ENDFORM.                    "top_of_page
    *&      Form  top_of_page3
          text
    FORM top_of_page3.                                          "#EC CALLED
      WRITE text-015."ERROR REPORT
    ENDFORM.                    "top_of_page
    *&      Form  EMAIL_NOTIFICATION
    FORM email_notification .
      DATA: lv_email1  TYPE somlreci1-receiver,
           lv_email2  TYPE somlreci1-receiver,
           lv_email3  TYPE somlreci1-receiver,
           lv_subject TYPE char200,
           c_flag     TYPE c           VALUE 'X',
           lv_attachment TYPE char50.
      CLEAR: lv_email1,
             lv_email2,
             lv_email3,
             lv_subject,
             lv_attachment.
      SELECT SINGLE email1
                    email2
                    email3
        FROM zhr_interface_pr
        INTO (lv_email1,lv_email2,lv_email3)
        WHERE zinterfaceid EQ gc_objectid.
      IF sy-subrc EQ 0.
        IF sy-batch EQ 'X'.
    Send email notification
          lv_subject = text-037.
          lv_attachment = text-038.
          CALL FUNCTION 'Z_SEND_EMAIL_FROM_SPOOL'
            EXPORTING
              email1            = lv_email1
              email2            = lv_email2
              email3            = lv_email3
              subject           = lv_subject
              attachment_name   = lv_attachment
            EXCEPTIONS
              spool_not_created = 1
              OTHERS            = 2.
          IF sy-subrc <> 0.
          ENDIF.
        ENDIF.
      ENDIF.
    ENDFORM.                    "
    Edited by: katewinslate@SAP on Nov 17, 2010 12:50 PM

  • I have problems sending e-mail from my iPhone.  I can receive OK.

    I have problems sending e-mail from my iPhone.  I can receive OK.  The e-mail gets put in the outbox, but never goes out.

    Did you set it up following this:
    http://portal.activehost.com/knowledgebase.php?action=displayarticle&id=4744

  • Email problem sending .Mac email from pda Treo650

    Hi,
    I have been going crazy trying so send .Mac email from my Treo650, it has actually never worked. Receiving has always worked properly, as well as receiving and sending email from other accounts.
    Downloading and sending through my computer works perfectly and I have copied my computer's .Mac account settings to the PDA, but I have not yet been able to send a single email.
    Can anyone please help? Thanks in advance.
    David

    In Mail's menu, go to Edit > Attachments
    Do you have "Always Send Windows-Friendly Attachments" checked?  You should.

  • Have an iphone 3GS, 2 email accounts.  My work email account used to work.  Now if I send any emails from this account it only appears in my sent box.  Recipients internal and external do not receive.  IT person cannot figure why occurring.  Any insight?

    Have a iphone 3GS; 2 email accounts.  one is for work.  It used to work fine until about Feb 2011.  Now when i send emails from my work account it only appears in the sent file.  Recipients do not get email.
    IT person looked at it & cannot find why this is happening.
    Any insight why this is occurring??

    This has nothing to do with your iPhone.
    If a message is in the account's Sent mailbox, this means the message was successfully sent. If a message cannot be sent for whatever reason, it will remain in the Outbox.
    What happens to a message after it was successfully sent has nothing to do with the email client or computer/device used to send the message.

  • Can't send any emails from various accounts set up in mail 4.4

    I have a number of different email accounts (3 POP, 1 IMAP) set up in mail 4.4. Lately i have had some problems sending emails from some of the accounts. Usually, I get the outgoing mail server reject message, and then I try another server, and then it sends. THe next time I go to send an email through the outgoing server that I was rejected by, it sends without problems. Each time I shutdown, restart, or open the lid on the macbook, I go through the same process. UNTIL today. Now, I can't send ANYTHING outbound, via any of the 4 outgoing mail servers that I have set up. I have run with this same configuration without change for almost 3 years. Only change is that I have recently changed ISPs. Please help. Work from home, so critical problem.

    I had had the same problem after changing my ISP. It is definitely a Mail 4.4 problem. I partially fixed it by trashing all four of my e-mail accounts in mail preferences (simply click on the minus sign to delete them) and rebuilding them all with the correct settings and passwords. This worked fine with ATT, MSN and QWest but the Mail app simply refuses to connect to AOL's outgoing mail server (smtp.aol.com). In other words, I can receive AOL mail but I cannot send AOL mail using the Mac Mail app. Have to log on to AOL's web site and do it that way, which is a huge pain in the you know where. Mail 4.4 is definitely hinky -- keeps erasing passwords and asking for them again and again. As a result, my keychain contains numerous repetitions of the same password for each mail account. I don't know why Apple doesn't fix this problem, which recurs with depressing regularity according to many Mac Mail users on this forum.

  • I am using the mail aplication on my destocktop and even though i can receive i cant send any email from my hotmail account using BT

    i can send emails if i log in throw my internet browser and i can send emails from another network despide BT.i tried everything, i had check the all the settings
    every time i try to send an email that what apper
    my ports as well are set as they should be
    i did visited the apple store and my email worked perfectly there.... can anyone say whats wrong??

    Hi Pitas123
    I am in the UK and had a similar problem. Ii eventually found the problem was due to my BT Home Hub Router.  Not sure where you live, but of you are in the UK, this might work for you.
    I found this fix below on https://discussions.apple.com/thread/4604180?start=15&tstart=0
    It worked for me.  If you can't link to the URL, here is the body of the text
    There's an issue related to the BT homehub that is providing a hostname that is "syntactically incorrect" for several smtp server.
    Here's how you can fix it.
    Using your internet browser, go to the address "192.168.1.254
    - Follow instructions to reset your password if asked.
    - Then go to "Settings", then "Advanced Settings" and "home network"
    You will see there all the devices that are connected or that has been connected before. It's gonna be easyer if yout computer is the only one connected.
    Your computer should have a name like "unknown-xx:xx:xx:xx:xx ...
    Click on this name, chose another name without any special characters, like "macbook" for exemple.
    And then click on "apply"
    - restart your computer.
    That should fix the issue.
    Credit goes to vincentfromcork for providing me with the solution.
    Hope it works for you.  If it does, spread the word ;-)

  • Problem sending MobileMe email from iPhone

    Hello
    I have a new iPhone, MacBook and MobileMe subscription. The address from MobileMe when I send email from my Mac is [email protected] but when I send email from my iPhone it is [email protected] I have in theory followed all the instructions yet cannot get it to do otherwise. Any suggestions appreciated
    Cheers
    Ben

    This is because the SMTP server you have configured does not permit connections from off the ISP's network. When you are connecting via EDGE this is off-network from the perspective of the ISP.
    Here are some hints from Apple on this problem:
    http://docs.info.apple.com/article.html?path=iTunesWin/7.3/en/2637.html
    You didn't say who your ISP is, but here are some common settings ISPs in various countries:
    http://docs.info.apple.com/article.html?artnum=306990
    As a last resort in the US you can set the outgoing SMTP server to cwmx.com:25 with no user ID or password. This will work on EDGE only, not on WiFi.

  • Unable to send any email from my brand new ipad 2 and my iphone 3gs lately

    Lately I found that my Iphone & my brand new ipad2 are unable to send out any email. it keep mentioning about the outgoing setting.."the connection to the outgoing server"webmail..." failed.Additional Outgoing mail servers can be configures in setting, bla bla bla
    .I try look for some advices from apple suport communities seems doesn't work for me...pls help...>_<

    Anyone can help?

  • Hi, I can't send any email from my BC webmail.

    Hi,
    I have a problem. A while ago I did send out a lot of emails to costomers, and after that I have not been able to send or answer any email in my webmail. It seems blocked.
    Please help!
    Best regards,
    Liselotte

    Hi ,
    Here's an article that might help - http://docs.businesscatalyst.com/user-manual/site-settings/email-users/cannot-send-emails. If you still cannot send please open a ticket with Support to further investigate this.
    Thanks,
    Mihai

  • Once again, I have problems sending e-mails from my iPad 2. I have a telus account and I have dealt with their tech people and they have checked all my settings and everything is fine. Apple techs advised to open Gmail acct. and re-route through it? Why?

    I am having a difficult time trying to send e-mails from my iPad 2? I have contacted my Telus server tech people and we have double checked all my settings. Everything is properly set! Checked with my Apple people and they say this is a common problem with my server, yet others with the same server don't seem to have a problem. They suggested that I open a Gmail account and infor my mail server(Telus) to route my mail through my Gmail account? Does thei make sense? Are ther any other solutions I might investigate?

    Hi prettytoni,
    I saw one interesting solution to set a gmail account like as it is a "Microsoft Exchages" account... Maybe you can try to do the similiar with your Telus account? (I'm not sure about the result, but still you can try it))))
    here is the link:
    http://www.maclife.com/article/howtos/how_set_your_gmail_accounts_push_email

  • Problem Sending Authenticated email from C2 App

    Hi All,
    I am trying to send an auto response with gathered user details back to the user from my app.
    I have completed the sending emaill tutorial but this is for email that does not need authenticated. I am thinking that I just need to pass my e-mail address and password to btinternet ( my mail server) but I am not sure where to pass this in my code. I get the error "To fix this you must make a simple change to your email(known as SMTP authentication)" The app runs as far as the asterisks** below at log("Got client");
    Thanks
    Jim.
    public void sendCustomerDetails(String firstName,String surname,String username,String password,String email,String telephoneNumber,String addressLn1,String addressLn2,String city,String country,String postcode, int customerID) {
    // This will send an Email to the customer with a copy of their login details as stored on the Focal Point customer tabl
    // method to send an e-mail via SMTP
    // (if no authentication is required from the mailserver)
    boolean loggedIn = getSessionBean1().getLoggedIn();
    String from = "***********"; // from address
    String to = "email"; // to address
    String mailserver = "***********";
    String SMTP_AUTH_USER = "***********";
    String SMTP_AUTH_PWD = "***********";
    //"[email protected]"
    log("To address is: "+to);
    log("About to try and Email details: To: "+email+" Firstname: "+firstName);
    try {
    log("In the Email try");
    sun.net.smtp.SmtpClient client = new sun.net.smtp.SmtpClient(mailserver);
    log("Got client");
    client.from(from);
    client.to(to);
    log("Set the client from and to - About to create the print stream");
    java.io.PrintStream message = client.startMessage();
    log("Started message");
    message.println("To: " + to);
    // TODO: set the subject line
    message.println("Subject: Customer Details - Focal Point Furniture");
    // TODO: set the body of the message
    // message.println(getTextArea1().getValue().toString());
    if (loggedIn){
    message.println("Hello "+firstName+",\nThanks for updating your details with Focal Point Furniture Online.\n\nPlease check that the following information is correct and keep this Email for your records.\n\n");
    } else{
    message.println("Hello "+firstName+",\nThanks for registering with Focal Point Furniture Online.\n\nPlease check that the following details are correct and keep this Email for your records.\n\n");
    message.println("Your Name: " +(firstName +" "+ surname));
    message.println("YourAddress: " + addressLn1+"\n");
    message.println(" "+ addressLn2+"\n");
    message.println(" "+ city+"\n");
    message.println(" "+country+"\n");
    message.println(" "+postcode+"\n");
    message.println("Your Password is: " + password+"\n\n");
    message.println("Your Customer ID is: " customerID"\n\n If any of these details are incorrect please log in to http://www.focalpointfurniture.co.uk to ammend.\nThanks and Regards,\nJames \n\n NB. If you forget your username and password, you will be able to use your custoomer ID to have your saved details Emailed to you.");
    client.closeServer();
    log("Message is sent!!!");
    } catch (java.io.IOException ex) {
    // in the case of an exception, print a message to the output log
    log("ERROR SENDING EMAIL:"+ex);
    }

    Maybe my response to
    http://forum.sun.com/jive/thread.jspa?threadID=46510&messageID=342045#342045
    helps you as well.
    Thanks,
    -- Marco

  • I couldn't send any email from iPad mail !!!!!

    How to solve this issue?

    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/
    Setting up and troubleshooting Mail
    http://www.apple.com/support/ipad/assistant/mail/
    Using a POP account with multiple devices
    http://support.apple.com/kb/ht3228
    iOS: Adding an email account
    http://support.apple.com/kb/HT4810
    iOS: Setting up an Outlook.com, Hotmail, Live, or MSN email account
    http://support.apple.com/kb/ht1694
    iPhone, iPad, iPod touch: Microsoft Outlook 2003, Outlook 2007, Outlook 2010 may not display contacts and calendars after sync
    http://support.apple.com/kb/TS1944
    Server does not allow relaying email error, fix
    http://appletoolbox.com/2012/01/server-does-not-allow-relaying-email-error-fix/
    Why Does My iPad Say “Cannot Connect to Server”?
    http://www.ehow.co.uk/info_8693415_ipad-say-cannot-connect-server.html
    Gmail Account Will Not Connect to Gmail Server
    http://support.apple.com/kb/ts3058
    How to Delete Email on the iPad
    http://ipad.about.com/od/iPad_Guide/ss/How-To-Delete-Email-On-The-Ipad.htm
    How to Mass Delete Emails from iPhone and iPad Inbox (with video)
    http://suiteminute.com/how-to-mass-delete-emails-from-iphone-and-ipad-inbox/
    How to delete ALL mail messages from iPhone/iPad in one step
    http://www.conferencesthatwork.com/index.php/technology/2014/01/how-to-delete-al l-mail-messages-from-iphoneipad-in-one-step/
    How to add, send and open iPad email attachments
    http://www.iskysoft.com/apple-ipad/ipad-email-attachments.html
    How to Sync Contacts with Your iPad Using iTunes
    http://www.dummies.com/how-to/content/how-to-sync-contacts-with-your-ipad-using- itunes.html
    Importing a Contact List CSV to the iPad
    http://techchannel.radioshack.com/importing-contact-list-csv-ipad-2235.html
    iOS: ‘Mailbox Locked’, account is in use on another device, or prompt to re-enter POP3 password
    http://support.apple.com/kb/ts2621
    iCloud: Create a group and add contacts to it
    http://support.apple.com/kb/PH2667
    eMail Groups - You can use a third party app that many users recommend.
    MailShot -  https://itunes.apple.com/us/app/mailshot-pro-group-email-done/id445996226?mt=8
    Group Email -  https://itunes.apple.com/us/app/mailshot-pro-group-email-done/id445996226?mt=8
    iPad Mail
    http://www.apple.com/support/ipad/mail/
    Configuration problems with IMAP e-mail on iOS with a non-standard SSL port.
    http://colinrobbins.me/2013/02/09/configuration-problems-with-imap-e-mail-on-ios -with-a-non-standard-ssl-port/
    Try this  - Reset the iPad by holding down on the Sleep and Home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons. (This is equivalent to rebooting your computer.) No data/files will be erased. http://support.apple.com/kb/ht1430
    Or this - Delete the account in Mail and then set it up again. Settings->Mail, Contacts, Calendars -> Accounts   Tap on the Account, then on the red button that says Remove Account.
    How to delete an email account on your iPad
    http://www.shoppepro.com/support/knowledgebase/228/How-to-delete-an-email-accoun t-on-your-iPad.html
     Cheers, Tom

Maybe you are looking for