Delete email receipients from autocompletion

Can you tell me how to delete email recipients from autocompletion. This is very problematic as I have unwanted emails in here.

How bad do you want it? I found the only way to do this is to go to settings (General, Reset) and then to Reset all Content and Settings. Then when you restore, you must do as a new iPhone, not from a backup (because of course those same address are in the backup). You lose everything. As long as you have your contacts, calendars, bookmarks, etc... inputted in your computer, when you re-sync you just put it back. Although you will have to re-do things such as customized home screens, and the arrangement of bookmarks. And any SMS's will be deleted too.

Similar Messages

  • 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.

  • Can't delete email messages from some folders in Mail

    I CAN delete email messages from header Folder "MAILBOXES" (drafts, sent, trash); however, there's another folder header below called "ON MY MAC", where I save various emails by dragging them to a subfolder, and when I try to delete these, I get this message:
    "The message '(subject of email)' could not be moved to the mailbox 'Deleted Messages --- On My Mac' The destination mailbox 'Deleted Messages --- On My Mac' does not allow messages to be moved to it."
    The only way to delete from this folder is to hold Control, select from the dropdown Move to, then Trash, and then one of three sub-trash folders (the one that has my email address) -- this is a pain to do.
    Mail is just not working properly any more (I just added 2 other posts - one about crashing, another about all my Fonts missing)
    thank you in advance!

    Colin,
    Have you checked Mail>Window>Previous Recipients for the old address? If not, attempt to "Remove From List" at that location and let us know what happens.
    ;~)

  • 8600 plus with mac osX, need to delete email addresses from scanner

    Have Mac osX snow leopard, need to remove/delete email addresses from my scanner list. Have tried to follow other posts to solve but they don't seem to help as I can't find the specific network folder. Thanks, Chuck

    Hi @oreganocrk ,
    I see by your post that you would like to delete email addresses from the scanner list. I would like to help.
    Print a configuration page to get the printer's IPv4 address. Printing a Network Configuration Page.
    Access the Embedded Web Server for the printer. Type the IP address into your web browser's address bar.
    Click on the Scan tab, Scan to email on the left side of the window, select Scan to address book.
    Check the email that you would like to remove and click delete.
    If you need further assistance, just let me know.
    Have a nice day!
    Thank You.
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!
    Gemini02
    I work on behalf of HP

  • Deleting email adresses from Hp 8600 Plus scanner

    How do I delete email addresses from my scan to email address book. It is full and I need to add more want to delete some old ones.

    Found my answer. had to go on my computer under networks click on the HP scanner/printer there you can delete and add email addresses for the scan to email.

  • HT204150 I linked my outlook express with icloud, not realizing it would change my outlook express contacts.  I deleted email addresses from my iphone which in turn deleted them from my PC.  Is there any way to get these addresses back?

    I linked my outlook express with icloud, not realizing it would change my outlook express contacts.  I deleted email addresses from my iphone, not wanting them there which in turn deleted them from my PC.  Is there any way to get these addresses back? Seems I no longer have an outlook contacts list.

    It's Outlook, not Outlook Express (different program) and if you have now deleted them from iCloud and do not have a backup they are gone.

  • How can I remove old deleted email addresses from my 'To' choices field

    When I input an email address in my email 'TO' box old deleted email addresses still appear as choices. Is there any way of deleting these old addresses permanently? Very annoying!

    There is no way to delete the remembered email addresses in the mail app. Removing them from your Contacts has no bearing on how this affects the mail app. The only real way to delete those remembered addresses is to restore the iPad to factory settings. That is a pretty harsh workaround just to have the mail app forget some email addresses.
    If you ignore those addresses, eventually they will go away, but it can take some time before that happens. There is nothing short of restoring to factory settings that you can do now to remove them.

  • Deleting email address from FaceTime

    Want to delete verified email address from FaceTime in one account so I can use it in another account. System will not let me delete address. What is up.

    Maybe:
    iOS: Troubleshooting FaceTime
    iOS: Troubleshooting FaceTime and iMessage activation

  • How I can delete email addresses from I-photo 11?

    Hello to every body.
    I sent a photo from I-photo by the command "share.....by email". Now If I want to share another photo, I put in the email window, the first letter of email address, and it show me the preceeding addresses used to share the photo. In these used addresses there is a unwanted one and I want to delete it.
    How I can do that?
    Thank you very much.
    marco

    Greetings Marco,
    Quit iPhoto if it is open
    Remove the following file to the trash:  Your User > Library > Preferences > com.apple.iPhoto.plist*
    Re-open iPhoto
    This will remove all saved email addresses from iPhoto's memory.  Note: It will also restore the default location of the iPhoto Library if you moved it (hold down the option key and launch to choose the old location if you've moved it).  It will also remove certain preferences such as your email accounts if they are not stored in the Mail program and Facebook / Flickr accounts.
    Hope that helps!

  • 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

  • Delete email address from Address Book

    I deleted a email address from my address book and put in a new one for that person.  When I go to write a email the old address still comes up (along with the new one).  Is there a way to permentley  remove the old address?  Thank you

    Yes, go to menu Window>Previous Recipients, look up the address you want to get rid of, hit Remove From List.

  • 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.

  • Delete email account from my phone

    I want to delete an email account from my Droid Razr Maxx.  I set up my Yahoo account on my phone.  I did not realize that I was going to get all the mail including the hundreds of spam I get daily on this account.  I dont want to delete it, I just dont want it to get to my phone. 

    Ok so what one do you want to do away with if it's a Gmail account i would keep it unless it's getting really bad but one thing if you do get rid of it you have to Factory Reset to Remove the Gmail account Now if this is another Email say like AOL you can remove it by just going to accounts and going to the one in Question and remove it, then put your Yahoo in it's place one thing i would recommend doing is after you remove the Account go the home Screen perform a Soft Reset and then go back and add the Account when your phone comes back on..

  • 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.

Maybe you are looking for

  • How to get photos off my iphone 4s that does not turn on

    i have nearly 2,000 photos on my iphone 4s, but my iphone just stopped working, wont turn on, i just really want the photos off thats all ive tried holding both buttons for ages and still nothing, can someone help me pls

  • Easy RFC lookup from XSLT mapping using a java class (getting Error)

    Hi All, I am trying to implement the sample scenario for calling RFC from xslt with the help of wrapper class. I am getting following error. com.sap.aii.mapping.lookup.LookupException: Internal lookup service is not registered. Invoking the lookup se

  • Purchase Order Without GR

    Dear Experts, I want to configure a new scenario for service oriented Company where Good Receipt procedure not necessary. I've made a flow where I'll make a sales order then will create Purchase Order with reference to Purchase Requisition then I wan

  • App store doesn't recognise my purchases

    Purchased Final cut Pro Through app store but now store does not recognise my purchase and will not update the software.  There is no direct link to App store to resolve this issue.

  • Codesign failed with exit code 5

    Hi everybody, yesterday I renewed my dev account, at first I had no problem archiving apps to test them into my ipad, but suddenly every build gave me "build failed" with this error: CodeSign  /Users/cristiano/Library/Developer/Xcode/DerivedData/Mult