How to delete email only from iphone 4s

How can I delete email from my iphone but not from my hotmail account?

Not possible with an IMAP or Exchange account.
If you are accessing your Hotmail account as a POP account with the iPhone's Mail app, deleting a received email from your iPhone should have no effect on the server. Not sure if Microsoft supports accessing a Hotmail account as a POP account.

Similar Messages

  • How to delete multiple songs from iPhone 5S without losing form iTunes? The unchek function has not worked. Why?

    How to delete multiple songs from iPhone 5S without losing form iTunes? The unchek function has not worked. Why?

    Sorry I had to reply through your profile Gail from Maine, my PC has java issues. In any event, when I delete them directly from my device everything is perfect and cool. However, in the rare instance I want to add new music that I actually buy in stores (I know, quite the unique and old-fashioned idea...but hey Im an audiophile) once I upload the tunes, everytime I sync my library it re-adds everything that I spent hours deleting. In a perfect world, I thought I could maintain a massive iTunes Library, and add or delete (remove) songs from my iPhone to save both memory or keep my iPhone selections more current/apt to my musical "tastes" at that time. I know about the whole playlist thing, but thought there might be an easier way. ie - checking/un-checking the little box next to the song name, and then doing a sync. Again, everytime I do this however, whether everything is checked or un-checked it adds the entire library! So frustrating. Any suggestions. Thank you graiously in advance for your help.

  • How to delete music albums from iPhone

    How to delete music albums from iphone?

    They're DEFINITELY pushing Apple users that way. I just saw yet ANOTHER new/incredible feature the Galaxay can do that Apple (I mean Tim Cook) can't even DREAM about doing.
    At this point, it's becoming an embarrassement to even own an iPhone. *sigh*

  • How to delete photo library from iPhone?

    how to delete photo library from iphone?

    connect your iphone to your mac.
    1. open image capture app on your mac
    2. back up your iphone photos to your mac
    3. select all photos you want to delete
    4. click the red circle with the red line through it in the left bottom of the image capture window.
    5. this will delete your iphone photos you selected.

  • How to  delete email attachments from server

    Hi,
    I created an a CF template for sending e-mail which includes
    attachments. It has been tested on my dev box and is functioning
    fine as the attachment upload to a designated directory on the
    server. I would like the attachments to be purged once the e-mail
    has been forwarded to the recipent.
    In Macromedia's ColdFuision 7MX web application construction
    book page 913 "Interacting with Email" there is a CFC that will
    delete the file when the user ends their session.
    I am not sure how to write this to fit the code I am using.
    Here is the eMail form
    <!--- Mail_Form.cfm--->
    <html>
    <head>
    <title>Please enter your message</title>
    </head>
    <body>
    <form action="Send_Email.cfm" method="post"
    enctype="multipart/form-data">
    <table width="500" border="0" align="center">
    <tr>
    <td width = "500" colspan="2">Please enter your e-mail
    message:</td>
    </tr>
    <tr>
    <td width="250">To:</td>
    <td width="250"><input type="text" name="to_addr"
    value=""></td>
    </tr>
    <tr>
    <td>Subject:</td>
    <td><input type="text" name="subject"
    value=""></td>
    </tr>
    <tr>
    <td>Message:</td>
    <td><input textarea name="message" rows="5"
    cols="35"></textarea></td>
    </tr>
    <tr>
    <td width="250">Attachment #1:</td>
    <td width="250"><input type="file"
    name="attachment_1" value=""></td>
    </tr>
    <tr>
    <td width="250">Attachment #2:</td>
    <td width="250"><input type="file"
    name="attachment_2" value=""></td>
    </tr>
    <tr>
    <td width="250">Attachment #3:</td>
    <td width="250"><input type="file"
    name="attachment_3" value=""></td>
    </tr>
    <tr>
    <td width="250"> </td>
    <td width="250"><input type="submit"
    name="Send_Email" value="SendEmail"></td>
    </tr>
    </table>
    </form>
    Here is the form to send the attachment.
    <!--- Send_Email.cfm --->
    <!--- First make sure that the user uploaded attachments
    --->
    <cfif FORM.attachment_1 neq "">
    <!--- first actually upload the file --->
    <cffile action="upload"
    destination="D:\uploadsTEST\"
    filefield="attachment_1"
    nameconflict="makeunique">
    <!--- now create a temporary holder for the attachment
    later on --->
    <cfset attachment_local_file_1 =
    "d:\uploadsTEST\#file.serverfile#">
    </cfif>
    <!---Now repeat the process for the second and third
    attachment:--->
    <cfif FORM.attachment_2 neq "">
    <!--- first actually upload the file --->
    <cffile action="upload"
    destination="D:\uploadsTEST\"
    filefield="attachment_2"
    nameconflict="makeunique">
    <!--- now create a temporary holder for the attachment
    later on --->
    <cfset attachment_local_file_2 =
    "d\uploadsTEST\#file.serverfile#">
    </cfif>
    <cfif FORM.attachment_3 neq "">
    <!--- forst actually upload the file --->
    <cffile action="upload"
    destination="D:\uploadsTEST\"
    filefield="attachment_3"
    nameconflict="makeunique">
    <!--- now create a temporary holder for the attachment
    late on --->
    <cfset attachment_local_file_3 =
    "d:\uploadsTEST\#file.serverfile#">
    </cfif>
    <!---OK, you have now uploaded the file the server, now
    let's send
    out the email with the attachments:--->
    <cfmail FROM="[email protected]" to="#form.to_addr#"
    subject="#subject#"
    server="an001so-dby1c.pbi.global.pvt" port="25">
    #message#
    <cfsilent>
    <!--- <cfsilent> tag used to kill the white space
    in this area
    so your email is not cluttered with white space.--->
    <cfif FORM.attachment_1 neq "">
    <cfmailparam file="#attachment_local_file_1#">
    </cfif>
    <cfif FORM.attachment_2 neq "">
    <cfmailparam file="#attachment_local_file_2#">
    </cfif>
    <cfif FORM.attachment_3 neq "">
    <cfmailparam file="#attachment_local_file_3#">
    </cfif>
    </cfsilent>
    </cfmail>
    Here is the session application code to delete the file upon
    uploading
    <!---
    Filename: Application.cfc
    Executes for every page request
    --->
    <cfcomponent output="false">
    <!--- Name the application. --->
    <cfset this.name="attachmentPurge">
    <!--- Turn on session management. --->
    <cfset this.sessionManagement=true>
    <cfset this.clientMangment=true>
    <cffunction name="onSessionEnd" output="false"
    returnType="void">
    <!--- Look for attachments to delete --->
    <cfset var attachDir = expandPath("Attach")>
    <cfset var getFiles = "">
    <cfset var thisFile = "">
    <!--- Get a list of all files in the directory --->
    <cfdirectory directory="#attachDir#" name="getFiles">
    <!--- For each file in the directory --->
    <cfloop query="getFiles">
    <!--- If it's a file (rather than a directory) --->
    <cfif getFiles.type neq "Dir">
    <!--- Get full filename of this file --->
    <cfset thisFile =
    expandPath("Attach\#getFiles.Name#")>
    </cfif>
    </cfloop>
    </cffunction>
    </cfcomponent>
    The tutorial only explains how to delete the attachment when
    the recipient checks there mail
    in the POP server.
    Assuming that the sender is in a session would the code be
    written to delete the attached file from the directory on
    the server one the e-mail is sent.
    Can someone explain how to automatically delete email
    attachments from a designated directory or provide me with the code
    that would handle this after an email is sent with attachment.
    Thanks,
    Tony

    I don't know why your dos code didn't run. It could be
    addressing. My limited experience with cfdirectory/cffile/cfexecute
    is to type out the complete path at least once.
    Good books?
    Hard to say, depends on what else you are new at. If you are
    new to html, then htmlgoodies.com has good tutorials. So does
    webmonkey.com. If you have trouble with sql, I have heard good
    things about the SAMS book, Teach Yourself SQL in 10 Minutes by Ben
    Forta. I learned javascript by buying the book Teach Yourself
    Javascript in 24 Hours. The O'Reilly books are also good. I learned
    awk with one of those books.
    Glad you liked the fish pics. The camera is specified on most
    of the pages. If it says Reefmaster, I used an external strobe. If
    it says Sony I either used the camera flash only or natural light.
    By the way, that is not a Cold Fusion site. It's strictly html and
    javascript.

  • How to delete photostream photos from iphone?

    how to delete photostream photos from iphone4?

    Just look at the many other threads on this subject.  See the 'More Like This' box on the right hand side?
    Basically, you can only delete all or none.  To delete all, reset your Photostream on iCloud.com and switch off PS on your device.
    You can temporarily remove the photos by switching off PS on your device, but when you switch it back on, the photos will return unless you reset as previously mentioned.

  • How to delete messages permanently from iPhone

    Hi
    How I can delete messages permanently from iPhone?

    in the sms threat there is a button called edit
    click that

  • How to deletes the photos from iphone 4?

    How can I delete the stored photos from the iphone 4.

    I am so thrilled to report that, YES, in fact you can delete all photos with one easy swipe~!!!! I just discovered how by accident when I went to delete my audiobooks for more storage!! You go to SETTINGS > GENERAL > USAGE > PHOTOS & CAMERA > and then just decide what you’d like to remove~~ either (or all) “Camera Roll” “Photo Library” or “Photo Stream” & Swipe to Delete! Happy deleting everyone!!
    http://www.cultofmac.com/138384/how-to-delete-audiobooks-directly-from-your-ios- device-ios-tip/

  • TS3899 hi - why can't i delete emails once from iphone and ipad at the same time?

    When I delete emails from the iphone they still appear in the ipad. Why? How can I delete from both devices at the same time?

    You can and it should be automatic depending on your refresh rate.  If your phone and iPad refresh every hour, or only on request, then the iPad will not show the change until you refresh the email account.
    Next time you delete emails, try it....Refresh the screen on the iPad.
    This only works if iPad has internet connection.

  • How to delete contact groups from iPhone

    I have a peculiar problem. While buying iPhone 4 - the vendor helped me transferrng my contacts from Nokia to iPhone 4. I have noticed that some unwanted groups exist without any contact nos.
    I am unable to delete them now.
    I have transferred all the contacts ( or synchronised) with outlook 2002 installed in my PC.
    Can you please guide me how to delete these unwanted groups and only keep my contacts.

    Sorry, I don't use Outlook, but the requirements for syncing contacts with outlook are at least version 2003. http://support.apple.com/kb/HT1296
    Did you use the build in help feature in outlook to find out how to delete a group?

  • How to delete photos/pics from iPhone 3G???

    Please help. I am at a loss. How do you delete photos/pics (that you uploaded) from iPhone 3G??? I see no delete button, no trash button or anything that would instruct me to remove the photo?
    Thanks.

    You can delete photos in your iPhone's Camera Roll only and only one at a time.
    Photos available in your iPhone's Camera Roll can be imported by your computer as with any other digital camera. Since you have a Mac, you can use iPhoto for this or the Image Capture application. After the import is complete, both applications include an option to erase all photos from your iPhone's Camera Roll, or you can delete select photos.
    Photos transferred from your computer to your iPhone via the iTunes sync process cannot be deleted on or from your iPhone. You can remove any or all photos transferred from your computer to your iPhone in the same way they were transferred to your iPhone - via the iTunes sync process.

  • TS3899 Cant delete email address from iPhone

    I added an email to my iPhone by following a link that was text messaged to me for work.   It did not set up the email properly and to retry GoDaddy says i need to delete the email account from my phone......problem is...there is no delete option at the bottom like there is for my other email accounts.   Maybe because this one came from a link that prepopulated the data...and do it wrong which is why It doesnt work!

    only_me wrote:
    it appears as a pop-up when I start typing in the "to" area within Mail.  It is NOT in my contact list, and I simply want it to go away.  
    The only way to remove those address is restore the phone as new. Probably not worth the hassle.

  • How to delete email address from blackberry 8530

    does anyone know how to delete old users email address from my phone and add my email address

    Hello,
    I think you have bigger problems. With a 2nd hand device, there are specific steps to take:
    KB05099 Steps to take before selling or after buying a previously owned BlackBerry smartphone
    I think you need to contact the former owner and have them perform their steps. Only then should you attempt your steps.
    Good luck!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • TS3899 I want to delete email msgs from iphone and computer at the same time?

    If I delete a mess from my Iphone, it doesn't delete from my computer. How do I sync one with the other?

    It sounds as if the mail account you are using is a POP account. Who is the email provider? If it is a POP account, then you cannot do what you are asking.

  • How to delete double photos from iPhone 5

    why i phone 5 double the photos in the photo app
    why is no trash button or bin
    how i delete the doubles
    thanks

    Photos transferred from your computer via the iTunes sync process cannot be deleted direct on the iPhone. These photos are removed the same way they were transferred to the iPhone originally - via the iTunes sync process.
    All photos transferred from your computer via the iTunes sync process are stored in the iPhone's Photo Library. Photos in the albums transferred below are not duplicated as in taking up double the storage space. Photos in the albums below Photo Library include a pointer to the original photos stored in the Photo Library. This was you can view the photos in an album only by selecting the album or all photos in all albums by selecting Photo Library.

Maybe you are looking for

  • How to improve and boost my laptop's performanc​e ?

    Hi there, My personal laptop is Lenovo THINKPAD T500 2055, and its main specifications are as follows: - Intel Core 2 Duo processor T9400 (2.53GHz 1066MHz 6MBL2) - 8 GB DDR3 SDRAM Memory Module 4 GB (2 x 4 GB) 1066MHz DDR31066/PC38500 DDR3 SDRAM SoDI

  • URGENT:not all variables bound error

    Hi I am getting the following error while trying to run my MAAddTrnActPg.xml in the SSHR Module error in my VO. I have checked all the bind variable mappings still getting this error, pls suggest ASAP oracle.apps.fnd.framework.OAException: oracle.jbo

  • Integration of cproject with microsoft project 2003

    dear all, i want to integrate cproject with microsoft project 2003. can u send me documents related this. what are settings required for this. my email id: <b>[email protected]</b> thanks amit

  • Question Installing BPM Studio

    Hi, I`m trying to install BPM Suite using Fedora but I don't wath size must have /root y /var do you know how to configure this? or if there is some material with kind of information? Thanks and Greetings

  • Delta Missing quick help needed

    Hi, Yesterday we have upgaraded the R/3 4.6C to ECC. Upgrade was succesful. After upgrade without changing the delta setting of the datasource, we loaded the data into R/3 from legacy system. Then BW did not find any delta data, it is bringing 0 reco