How to remove an incorrect email

I have a misspelled e-mail with the address, and I would like to remove it because I have one that is correct.

Hi Richard,

I see you want to know how to delete an email. I'll help you with this problem.

1. what operating system is installed on the computer?

2. which e-mail client are you using i.e Microsoft Outlook, Windows mail, hotmail etc?

3. How do you try to access the e-mail?

When you see the wrong e-mail in the Inbox, you must right click on that email and select Remove. This will remove the mail from the Inbox. You can empty the deleted items folder later.

Let us know if you need assistance with any windows problem. We will be happy to help you.

Tags: Windows

Similar Questions

  • How to remove an incorrect email address in the history of my email?

    I accidentally typed the wrong e-mail address when you fill out a form and now Firefox remember this e-mail address. How to remove it from the history?

    Next time that box and option just select the option which is incorrect in the drop-down list and press the keyboard delete key. (Mac users: shift-delete)

  • How to remove an incorrect e-mail address to pay Apple?

    How to remove an incorrect e-mail address to pay Apple?

    Hello

    To update an incorrect e-mail address to receive a verification code when adding a card to pay Apple, contact your bank / card issuer.

    Instead update the default address that is used when you pay within applications using Apple pay:

    -On your iPhone, go to: settings > portfolio & Apple pay > under the title of the default Transaction, press send.

  • How to remove a specific email inbox with the client application code?

    Hello

    How to remove a specific email inbox with the client application code?  Please suggest useful links.

    Advanced thanks.

    Concerning

    Sunil.G

    Your question is a bit broad, so it is difficult to give you details.

    First of all, you must have the ID of the original message. Usually, you get either by hanging the message when he came into the Inbox (by implementing FolderListener), or by retrieving a list of mail of enamel "Store".

    Once you have this message ID, you call Folder.deleteMessage ().

    Here, there is a laboratory of Developer:

    http://NA.BlackBerry.com/eng/developers/resources/Labs/listeningforemail.jsp

    Moreover, classes to look in the API of reference:

    Store

    Folder

    FolderEvent

    FolderListener

    Session

    ServiceConfiguration

    Message (message RIM, not the J2ME)

  • How to remove attachments to email from the server

    Hello
    I created a CF model for sending electronic mail that includes attachments. It has been tested on my dev machine and works fine as long as the download of attachments to a directory on the server. I wish that the spare part to be served once as the e-mail message has been sent to the recipient.

    Macromedia ColdFuision 7MX web application construction book page 913 "interacting with Email" we a CFC that will remove the file when the user ends their session.

    I don't know how to write it to adapt the code that I use.

    Here's the e-mail form

    <! - Mail_Form.cfm - >
    < html >
    < head >
    < title > please enter your message < /title >
    < / head >

    < body >
    < do action = "Send_Email.cfm" method = "post" enctype = "multipart/form-data" > "
    < table width = '500' border = "0" align = "center" >
    < b >
    < td width = "500" colspan = "2" > please enter your e-mail address: < table >
    < /tr >
    < b >
    < td width = "250" > to: < table >
    < td width = "250" > < input type = "text" name = "to_addr" value = "" > < table >
    < /tr >
    < b >
    < td > subject: < table >
    < td > < input type = "text" name = "subject" value = "" > < table >
    < /tr >
    < b >
    < Td > message: < table >
    < td > < input name = "message" rows text box = "5" cols = "35" > < / textarea > < table >
    < /tr >
    < b >
    < td width = "250" > annex #1: < table >
    < td width = "250" > < input type = "file" name = "attachment_1" value = "" > < table >
    < /tr >
    < b >
    < td width = "250" > #2 Attachment: < table >
    < td width = "250" > < input type = "file" name = "attachment_2" value = "" > < table >
    < /tr >
    < b >
    < td width = "250" > #3 Attachment: < table >
    < td width = "250" > < input type = "file" name = "attachment_3" value = "" > < table >
    < /tr >
    < b >
    < td width = "250" > < table >
    < td width = "250" > < input type = "submit" name = 'Send_Email' value = "SendEmail" > < table >
    < /tr >
    < /table >
    < / make >

    Here is the form to send the attachment.

    <! - Send_Email.cfm - >
    <!-first of all, make sure that the attachments downloaded the user->
    < cfif FORM.attachment_1 NEQ "" > "".
    <!-firstly actually-> download file
    < cffile action = "upload".
    destination = "D:\uploadsTEST\".
    FileField = "attachment_1."
    nameconflict = "makeunique" >
    <! - now create a temporary support for the attachment then - >
    < cfset attachment_local_file_1 = "d:\uploadsTEST\#file.serverfile#" >
    < / cfif >

    <!-now repeat the process for the setting of the second and third: - >

    < cfif FORM.attachment_2 NEQ "" > "".
    <!-firstly actually-> download file
    < cffile action = "upload".
    destination = "D:\uploadsTEST\".
    FileField = "attachment_2."
    nameconflict = "makeunique" >
    <! - now create a temporary support for the attachment then - >
    < cfset attachment_local_file_2 = "d\uploadsTEST\#file.serverfile#" >
    < / cfif >

    < cfif FORM.attachment_3 NEQ "" > "".
    <!--forst actually download the file - >
    < cffile action = "upload".
    destination = "D:\uploadsTEST\".
    FileField = "attachment_3."
    nameconflict = "makeunique" >
    <!-now to create a temporary support for late fixing on->
    < cfset attachment_local_file_3 = "d:\uploadsTEST\#file.serverfile#" >
    < / cfif >

    <!-OK, now you have downloaded the file from the server, now we will send
    email with attachments: - >

    "< intrusion via cfmail to =" #form.to_addr # "[email protected]" = "subject =" #subject #
    Server = "an001so - dby1c.pbi.global.pvt" port = "25" >
    #message #.

    < cfsilent >
    <!-< cfsilent > tag used to kill the white space in this area
    If your email is not cluttered with white spaces-->

    < 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 >
    < / intrusion via cfmail >

    Here's the session request to delete the file to download

    <!--
    File name: Application.cfc
    Runs for each page request
    ->

    < cfproperty output = "false" >

    <!-name of the application. ->
    < cfset this.name = "attachmentPurge" >
    <!-enable session management. ->
    < cfset this.sessionManagement = true >
    < cfset this.clientMangment = true >

    < name cffunction output = 'onSessionEnd' = "false" returnType = "Cancel" >
    <!--> look for attachments to remove

    < 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 the full name of this file - >
    < cfset thisFile = expandPath("Attach\#getFiles.Name#") >
    < / cfif >
    < / cfloop >

    < / cffunction >

    < / cfproperty >

    The tutorial doesn't explain how to delete the attachment when the recipient audits post
    in the pop server.

    Assuming that the sender is in a session would be writing code to remove the attachment from the directory on
    the server, a message is sent.

    Can someone explain how to remove attachments from a designated directory or provide me the code that would deal with that once an email is sent with an attachment automatically.



    Thank you

    Tony

    That's how I do it.



    ThisDir = "d:\dw\dwweb\work";
    ThisDate = DateAdd ("d",-90, now());




    Select the name of AllFiles
    where datelastmodified<>






  • How to remove an old email address of parameters pay Apple

    iPhone 6, settings, wallet and Apple pay, send two addresses are listed. One is an old email address of work as I have no idea how he got as I never enter data to work in my personal phone. I need to remove the old e-mail address of work of my settings, but I can't find an option to do so.

    Hello

    In the Contacts application, check your contact card - delete your old email address of work if it is included, it.

    Then, go to settings > Mail, Contacts, calendars: under Contacts, check my Info shows your contact card.

    If you have made any changes, restart your iPhone and check to see if the problem is resolved.

  • How to remove all previous email addresses?

    I was able to do in the past, but as your system has changed, I am not able to do this.  Help, please.

    Hello, JoeWeintraub,

    What version of Windows are you using and what email client are you referring?

    WIndows Live Mail: Add or remove

    http://Windows.Microsoft.com/en-us/Windows-Vista/add-or-delete-contacts

    Delete the Contacts in Hotmail

    http://www.freeemailtutorials.com/windowsLiveHotmail/hotmailContacts/deleteContacts.htm

    Gmail: Edit or delete Contacts

    http://support.Google.com/mail/answer/14001?hl=en

    Yahoo Mail

    http://help.Yahoo.com/kb/index?page=content&y=PROD_MAIL_CLASSIC&locale=en_US&ID=SLN3638

  • How to remove an incorrect IP address of a printer HP 3052 has

    When I installed everything first this printer I put an IP address which was the same as my router. Now I can't the printer to work on wireless configuration. How can I remove the IP now, I in the printer and get a new IP address. The installation disc does not have an IP address of the router because it (the router) has not been updated.

    Hello

    First, restore the default settings of the network on the front of the printer:

    1. press the button to display the wireless wireless.
    2. in the wireless Menu, select settings.
    3. in the settings menu, select restore default settings.
    4 confirm the selection to restore the default values.

    Then, follow these steps on your PC to reconfigure the printer wireless
    1. from the computer start menu, select all programs or programs, and select HP.
    2. Select the HP Deskjet 3050 a J611 series
    3. Select Printer Setup and software selection.
    4. Select connect new printer. Follow the instructions on the screen.

    Kind regards

    Shlomi

  • How to remove shortcuts for email address?

    When you type in the bar 'to' in Mail, a number of older e-mail addresses appear - how can I delete these?

    Thank you

    Window menu, previous winners. He find them and delete them.

  • How to delet an incorrect email address of my Messenger Droid

    Same question as the title

    It is a Microsoft Windows support forum, I suggest you to check with your cellular provider and/or the support forums or the documents of Motorola.

  • How to remove addresses that appear in my TO: field

    I earn 8 new desktop PC. I use the e-mail program that comes with it. When I create a new email I start typing in my to: field and strange addresses that are not in my speech of people of the book see the upward. Some are old email addresses with an incorrect address.

    How can I remove the email address that is not in my address book of people?

    I turned off Facebook, Google and Skype.

    Hey Kevin,

    I understand that you see the addresses that you have not registered on the application of people coming up as from suggestions on the field 'To' when you compose an email.

    Which e-mail account is configured in the Mail application?

    Discover the answer to Brian Tillman [MVP-Outlook] replied on 19 June 2013 to from the link below and check if it works.

    http://answers.Microsoft.com/en-us/outlook_com/Forum/oemail-osend/how-can-i-remove-the-incorrect-email-addresses/9c76b33c-8B5B-4d80-a5c5-840e11c97384

    If the suggestion above does not work, follow the steps below.

    Manually delete your account and sync it back.

    a. open the Messaging application.
    b. press the Windows key + C, click settings.
    c. click on the account, click on your sync account.
    d. scroll down and click delete the account.

    You will be prompted again, click Delete account once more, if requested.

    After successfully not synchronized your account try to synchronize again once more.

    a. open the Messaging application.
    b. press the Windows key + C, click settings.
    c. click on the account, click Add account.
    d. follow the steps that will be asked of you

    Consult the following links.

    http://Windows.Microsoft.com/en-us/Windows-8/mail-app-FAQ

    I hope this helps. Back to us for assistance.

  • How to remove the colors of the table of characters fill colors

    Hmm. I got to ask questions of the pages for Mac screen, but it looks different from what I've seen in the past. So, I hope I'm in the right place. Over time, I selected some colors in the color popup in the character frame and saved.  I tried to change a color by changing the opacity. Then I tried to save this color has changed for the lines at the bottom of the pop-up window.  It did not work. I would have saved the color that appears in the large square on the left.  Anyway my question is how to remove these incorrect colors lines down.

    I know that this little logical so I am attaching the screenshot I'm talking about.  I want to remove the three red squares, two on the line and the other on row down all in the middle of the screen.

    Thanks for your help.

    EHW

    HI ehw.

    This is the right place. He underwent extensive design of the overnight changes.

    don't think that you can "erase" the colors that you place in the custom palette, but you can replace them easily using the same method the first time:

    Set up color using the sliders or the color space, and then drag the big box and drop on the color you want to replace.

    Here I replaced two red with white.

    Interesting change of color of the header between the two images. Both are screenshots, the left using shift-control-command-4 then pasted from the Clipboard to an empty page in the Pages, the right is the actual color palette. Both were then with SHIFT-command-4 to maks a file that was then inserted here.

    Curious.

    Kind regards

    Barry

  • How to remove and old e-mail address of my Apple ID?

    How to remove an old email address of my Apple ID?

    See here: on your Apple ID - Apple Support email addresses

    -AJ

  • I set up my account to sync android with an incorrect email address. How can I remove or change the email address or account.

    When I set up my account to sync on my pc and my andriod I left the 'L' in gmail. I type fast and I do it a lot. Not normally a problem because I get an error message 'incorrect email address. If I synced and all - went well. However, I have no email account which docks my sync account. I created a new account on my PC, but I cannot change or delete the account on my Galaxy S3 - running on android 4.3.
    I tried to add another Firefox sync account, but he asks that I can have only one account. I can't remove the account because I can't find this option.

    I have it. I can't get the possibility to delete an account if I go through the configuration of the Firefox application menu and selecting Sync. Then, pulling to the top of all the accounts that are set up on the phone. I select the e-mail incorrect firefox I went and here at the bottom of the screen is an option to delete the account. I wasn't able to find my synchronization options via the S3 setting menu. There must be a trick to access. I know that in order to access the developer on the 4.3 options, I had to go to the "build number" on the screen "about phone" and tap it five times in order to have the developer options appear in the Setup menu. Crazy, huh?
    Thank you for your time and trouble. Really enjoyed.

  • How to permanently remove contact name/email address during the transmission of a message on the internet

    e-mail addresses are incorrect on the contacts list - during the transmission of a message on the internet.  How to remove these e-mail addresses and insert the good?

    Hi WilliamSpence,

    ·         Are you referring to Windows XP "address book"?

    ·         What email program are you using?

    ·         What is the email service provider?

    If you use Outlook or Outlook Express, then you can follow the Microsoft Knowledge Base article mentioned below and check.

     

    HOW to: Add and remove names in your address book in Windows XP

    http://support.Microsoft.com/kb/307730

    Let us know if that helps.

Maybe you are looking for