I can only get in coming mail, but not the outgoing email on my new ipad

I can't  send out email on my iPad , but I can receive it ok

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/
iPad Mail
http://www.apple.com/support/ipad/mail/
Try this first - 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.
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.
 Cheers, Tom

Similar Messages

  • How can I get ALL of my Google Calendars to show on the iCal on my iPhone? I see all of my Google Calendars on the iCal on my Mac, but I do not see them in the iCal on my iPhone. I only see one Google Cal, but not the others.

    How can I get ALL of my Google Calendars to show on the iCal on my iPhone?
    I see all of my Google Calendars on the iCal on my Mac, but I do not see them in the iCal on my iPhone. I only see one Google Cal, but not the others.

    https://www.google.com/calendar/iphoneselect

  • How do I adjust the page orientation in Pages?  I want to keep the pages above the section break as portrait, and the ones below I want to change into landscape.  Is this possible?  I can only get it to be one or the other but not both.

    I want to keep the pages above the section break as portrait, and the ones below I want to change into landscape.  Is this possible?  I can only get it to be one or the other but not both.

    The work around is to do two documents, one in portrait format and one in landscape format. When finished export to Pdf. open in Preview by select both files and use Cmd + O or doubleclick. You can now in Previews thumbnail column the pages from one document into the other and then save.
    If you have created only one with i.e. all pages in portrait format but with the content for the landscape pages rotated on the pages, you can rotate the pages in Preview. Two ways to get the same result.

  • On my iPad I can see in mail only the headlines of the mails but not the text - why?

    On my iPad I can see in mail only the headlines of the mails but not the text - why?

    Try closing the Mail app completely and see if the text shows when you re-open the Mail app : from the home screen (i.e. not with the Mail app 'open' on-screen) double-click the home button to bring up the taskbar, then press and hold any of the apps on the taskbar for a couple of seconds or so until they start shaking, then press the '-' in the top left of the Mail app to close it, and touch any part of the screen above the taskbar so as to stop the shaking and close the taskbar.
    If that doesn't work then also do a reset : press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider), after which the Apple logo should appear - you won't lose any content, it's the iPad equivalent of a reboot

  • I have several pdfs on my iPad in iBooks. My iPhone shows only the categories, none of the documents. How can I get my iPhone to also show the documents that are on my iPad?

    I have several pdfs on my iPad in iBooks. My iPhone shows only the categories, none of the documents. How can I get my iPhone to also show the documents that are on my iPad?

    You will need to connect your iPad to your computer's iTunes and do File > Devices > Transfer Purchases to copy them over to your computer (that will copy PDFs and epubs that are in the iBooks app, not just actual ibooks), and you can then sync them to your iPhone. Or you might be able to open each PDF in iBooks on your iPad and use the share icon to email them to yourself and then use 'open in' in the Mail app on your iPhone to copy them to its iBooks app (if the PDF is protected then you may not get the email option via the share icon).
    The Settings > iBooks > Sync Collections setting doesn't copy items between devices, it just means that it a bookor PDF is on both devices and you move it into a collection on one device then it will be moved into the same collection on the other device

  • I cannot access my voice mails.  I can't get to voice mail either through the phone app nor the viooice mail app.  When I try I get message the "can not complete call as dialed."t  Any ideas?

    I cannot access my voice mails.  I can't get to voice mail either through the phone app nor the viooice mail app.  When I try I get message the "can not complete call as dialed."t  Any ideas?

        backpack12,
    Voicemails are a vital part of having a working phone. We do suggest that you look at the contact and then the number to make sure that it is *86. If you are needing to get your voicemails until then, please dial *86.
    RobinD_VZW
    Follow us on twitter @VZWSupport

  • Any suggestions on how to get wifi to work?  I have a multitech router and can connect with a computer wirelessly but not the ipad.

    Any suggestions on how to get wifi to work?  I have a multitech router and can connect with a computer wirelessly but not the ipad.

    iOS: Troubleshooting Wi-Fi networks and connections
    http://support.apple.com/kb/TS1398

  • MP3 Player Auto Starts, How can I get it to load, but not Auto Start

    MP3 Player Auto Starts, How can I get it to load, but not
    Auto Start
    Jeff
    http://www.point1music.com/test

    How do you code it not to stream?
    stopAllSounds();
    stop();
    playlist = new XML();
    playlist.ignoreWhite = true;
    playlist.onLoad = function(success) {
    if (success) {
    _global.songname = [];
    _global.songband = [];
    _global.songfile = [];
    for (var i = 0; i<playlist.firstChild.childNodes.length;
    i++) {
    _global.songname
    = playlist.firstChild.childNodes.attributes.name;
    _global.songfile
    = playlist.firstChild.childNodes.attributes.file;
    trace(songname
    +" "+songfile);
    _root.createEmptyMovieClip("sound_mc", 1);
    _root.sound_mc.sound_obj = new Sound();
    _global.song_nr = random(songfile.length);
    _root.sound_mc.songStarter(songfile[song_nr],
    songname[song_nr]);
    MovieClip.prototype.songStarter = function(file, name) {
    this.sound_obj.loadSound(file, true);
    this.onEnterFrame = function() {
    if (this.sound_obj.position>0) {
    delete this.onEnterFrame;
    this._parent.display_txt.text = name;
    } else {
    this._parent.display_txt.text = "loading...";
    this.sound_obj.onSoundComplete = function() {
    (song_nr == songfiles.length-1) ? _global.song_nr=0 :
    _global.song_nr++;
    _root.sound_mc.songStarter(songfiles[song_nr],
    songname[song_nr]);
    btn_play.onRelease = function() {
    this._parent.sound_mc.songStarter(songfile[song_nr],
    songname[song_nr]);
    btn_stop.onRelease = function() {
    this._parent.sound_mc.sound_obj.stop();
    btn_fw.onRelease = function() {
    (song_nr == songfile.length-1) ? _global.song_nr=0 :
    _global.song_nr++;
    _root.sound_mc.songStarter(songfile[song_nr],
    songname[song_nr]);
    btn_rev.onRelease = function() {
    (song_nr == 0) ? _global.song_nr=songfile.length-1 :
    _global.song_nr--;
    _root.sound_mc.songStarter(songfile[song_nr],
    songname[song_nr]);
    playlist.load("playlist.xml");

  • I am trying to update my primary e mail address and apple id to the same new address as suggested by Apple. I find that I cannot make that update. It updates the primary e mail but not the apple id.

    I am trying to update my account e mail address. I find that I can update the primary e mail but not the apple id. This is something that apple suggest is the same address but the update procedure does not seem to work as suggested. Any ideas?

    Hi gms12286!
    This article should be able to help you achieve this goal:
    Apple ID: Changing your Apple ID
    http://support.apple.com/kb/ht5621
    Thanks for coming to the Apple Support Communities!
    Cheers,
    Braden

  • How can i delete my icloud account but not the password to turn off the find my phone

    how can i delete my icloud account but not the password to turn off the find my phone setting

    Make sure you are signed into iMessage and FaceTime with your current ID.  If they are signed into the old ID, go to Settings>Messages>Send & Receive and Settings>FaceTime, tap the ID, sign out, then sign back in with your current ID.
    Then temporarily recreate the old ID by going to https://appleid.apple.com, click Manage my Apple ID and sign in with your current iCloud ID.  Click edit next to the primary email account, change it back to your old email address and save the change.  (You should not have to verify the old email account so it doesn’t matter if you no longer have access to it.)  Now go to Settings>iCloud, turn off Find My iPad and enter your current password when prompted (even though it prompts you for the password for your old ID).  Then save any photo stream photos that you wish to keep to your camera roll (unless using iCloud Photo Library).  When finished go to Settings>iCloud, tap Sign Out and choose Delete from My iPad when prompted (your iCloud data will still be in iCloud).  Next, go back to https://appleid.apple.com and change your primary email address back to the way it was.  Now you can go to Settings>iCloud and sign back in with your current iCloud ID and password (your data will download back to your device).

  • My printer receives and prints my e mail but not the attachments how do I rectify this?

    My printer receives and prints my e mail but not the attachments. How do I rectify this?

    Hi robgpearce,
    Your issue could be related to the file type or a setting with the file. In the help section of ePrintCenter.com, it goes into details on how the HP ePrint service does not support printing webpages via email at this time, HP is currently developing dedicated solutions to support webpage printing from mobile devices. Image files (like jpeg, bmp, tiff, etc) need to be at least 100DPI in order to print via ePrint. PGP encryption, digitally signed documents, macro-enabled spreadsheets and password-protected documents are not supported by ePrint at this time and will not print.
    If I have solved your issue, please feel free to provide kudos and make sure you mark this thread as solution provided!
    Although I work for HP, my posts and replies are my own opinion and not those of HP.

  • How can I get contacts and calendar from outlook on my desktop to my new ipad 4

    How can I get contacts and calendar from outlook on my desktop to my new ipad 4

    Move the cursor over the icon and click the X that appears.

  • Outlook-2 different entries for the same person (but not the same email)

    i was asked to switch from outlook 2007 to outlook 2013 as a trial.
    For some reason, I get two different entries for the same person (but not the same email), one which is the name as normal and one where the name has ' around it. In the below example:
    I have 24 emails sent to Ciaran and then a further 14 sent to 'Ciaran'
    The email address for both is exactly the same and it does not seem to matter if I create a new email or reply to an incoming one.
    I switched back to Outlook 2007 and the issue is still the same.
    any suggestions?

    I would say that there is no way to prevent Outlook from doing it, it dependents on how the sender formatted the sending address, not the recipient who replies.
    To fix this:
    Open the message and double click the address and view source
    Just replace the generated Display As with the Display As you want
    Thanks,
    Ethan Hua CHN
    TechNet Community Support

  • Can only watch videos from YouTube, but not from other websites.

    I can only watch videos from youtube, but certain websites such as dailymotion.com , videos.sapo.pt, etc, the flash video does not load up. I´ve tried updating my video drivers, installing older versions of Adobe flash, but nothing has worked so far. Has anyone has this problem? IShould I be messing with the flash global settings?
    Thanks.

    Hi, You may want to check the system requirements for the other sites. If you can watch videos on Youtube, then you must have Flash Player Installed properly.
    Sometimes certain websites don't support or are late in supporting the latest version of Flash Player (10.1.102.64), so you might want to contact the websites on that.
    You can use this link for setting and see if that makes a difference. Normally you would get a popup from the website to ask for this, but that would depend on how you have the Global Settings Panels set up.
    http://www.macromedia.com/support/documentation/en/flashplayer/help/settings_manager03.htm l
    Hope that helps,
    eidnolb

  • I can only get audio over airplay - no audio when choosing apple tv from my ipad

    Hi,
    I can only get audio top play using airplay and choosing my Apple TV playing a video on my iPad. I updated all the ios today fro AppleTV and iPad. Is there anything else I can do? Any ideas are welcome
    thanks

    Try the video app or YouTube app and see what you get. No all of the apps are AirPlay capable.

Maybe you are looking for

  • MOVED: Wallpaper

    This topic has been moved to Off-Topic Technical. https://forum-en.msi.com/index.php?topic=165324.0

  • How do I create a complete video program for 6 hours of event video?

    I have used Premiere Elements 13 to create 10 Projects of individual presentations recorded in HD during a 6 hour conference. The chair of the conference wants a complete video record that could be given to participants. The totality is too large for

  • How to get the list of words from the dictionary?

    Hello, Please confirm the possibility to get the list of words available from the InDesign's default dictionary for example: I'd like to have all the words available from the 'Russian' dictionary from InDesign. Thanks, Praveen

  • SAP memory parameters

    Hi Guys, I am looking for some advice from Basis Gurus regarding SAP/Oracle memory sizing. We have a HP server with 16G physical memory. I am goign to have an SAP central instance and a 1.2 TeraByte Oracle database server on this one. I would like so

  • Dutch end-user manual spa50x series

    I am looking for dutch user guides for the spa50x series of IP phones. For instance, on the cisco website I can only find a document named 'cisco_spa509g_user_guide.pdf' in English whereas I would like a Dutch version of this to supply to Dutch custo