Samsung Fascinate :: Delete Stray Email Addresses

Nov 7, 2010

So I have a few stray email addresses that came over from gmail say with a dot between names that shouldn't be there. How can I delete an email address from a contact or preferably off the phone entirely? Fascinate running stock tw if that matters.

Samsung Fascinate :: Delete stray email addresses


Samsung Fascinate :: Delete Email Account?

Oct 22, 2010

In the Fascinate, i use gmail as my stock mail , want to delete the other mail account. Could'nt find a delete option in the email settings.

View 4 Replies View Related

Samsung Fascinate : Message Contacts Seems To Send All E-mail Addresses When Text

Nov 16, 2010

I have the Samsung Fascinate obviously but I'm annoyed with one Android feature. I managed to get only my contacts to sync what I want (not e-mails). However, when I send text messages, the message contacts seems to all the e-mail addresses I've previously sent e-mails to.

Is there any way to get rid of that? And why the heck isn't it the same as my contacts?

View 5 Replies View Related

General :: Syncing Samsung S3 Contacts To Gmail - Only Email Addresses Show

Jan 28, 2013

I see my phone contacts have synched with my gmail contacts, which is good. Except that only the email addresses are visible. Not the phone numbers. I have checked on the Accounts and Sync settings for the gmail - and it is set to transfer all (all boxes are ticked).

View 1 Replies View Related

Samsung Fascinate : Email App Not Sending Email

Sep 30, 2010

I have my work email setup in the email app. Ive never had an issue sending email on any phone ive had before.

All of my settings are correct and i can receive them fine.

They just sit in outbox and whenever i go select them all and tell it to send selected messages nothing happens. They don't send and I don't get any error or anything.

View 2 Replies View Related

General :: How To Set Up K9 Email For 2 Email Addresses

Nov 22, 2013

I have several different email addresses, and would like to be able to read them with K9. I have set up to receive my main email address, and can I set it up to fetch from the other addresses?

View 1 Replies View Related

Samsung Fascinate :: Delete Emails Remotely

Sep 30, 2010

I have a IMAP email system at my office. My Fascinate checks these emails. When I delete a email on the phone, it deletes it on my email server and deletes it on my office comp. I would like to delete them on the phone but have them remain on the office server. Is this possible? How would I go about setting this up?

View 3 Replies View Related

Samsung Fascinate :: Way Of Mass Delete Contacts

Sep 27, 2010

Hey does anyone know a way of mass deleting contacts? (Other than factory reset of course...) I can't seem to find a "delete all contacts" button.

View 5 Replies View Related

Samsung Fascinate :: How Do I Mass Delete Emails?

Sep 20, 2010

I am coming from a Droid Eris - I used to mass delete my emails by pressing the menu key, pressing delete again, check delete all and they were gone. How in the heck do I delete all 155 emails that downloaded?

View 2 Replies View Related

Android :: Accessing Email Addresses

Mar 17, 2010

I have the following code through which i am able to retrieve phone numbers. Somehow , i am not able to retrieve email addresses by using android.provider.Contacts.People API. import android.app.AlertDialog; import android.app.ExpandableListActivity; import android.content.ContentUris; import android.content.Context; import android.database.Cursor; import android.net.Uri; import android.os.Bundle; import android.provider.Contacts.People; import android.view.View; import android.widget.ExpandableListAdapter; import android.widget.SimpleCursorTreeAdapter; import android.widget.TextView; import android.widget.ExpandableListView. OnChildClickListener;

View 2 Replies View Related

Android : When On G1 How To Bring Up Email Addresses

Nov 9, 2008

I am ready to throw this phone out the window if somebody isn't able to help me! T-Mobile Tech support suck they have no clue and told me they have no clue and sorry! Well here goes!

I set up my gmail account and I imported my contacts from aol into my gmail account now I have no idea when I am on the G1 how to bring up my email addresses if i want to email.

View 3 Replies View Related

Android :: Accessing Contact Email Addresses

Mar 18, 2009

Post subject: Accessing contact' email addresses Hi! I'm developing an application in which I need to display user a list of contacts and their email addresses so that user can choose one of them. I've got some help from Internet and I'm able to display a list of contacts and their number by the following code

View 2 Replies View Related

HTC Incredible :: How To Clear Recent Email Addresses?

Jun 3, 2010

searched for this post and found this post a few times, but no answer. This if for the D-Inc btw, I emailed the wrong people a few times. for example i used JSmith@aol.com, instead of JSmith@yahoo.com, now whenever i try to email JSmith, i'm getting both AOL and YAHOO emails under recent history for email addresses. Is there a way to clear that ? it's getting very very annoying and i don't see a place to clear recent email history on the droid, anyone have any idea about that? Also, this is a 2 part question, how do we clear search history from google maps? I've tried to go to the app settings, but there is no clear cache, or clear data, and i've tried to go to security, privacy, and cleared data there, but when i search on Google maps, all the recent searches come up, which is not good when people can see where i've been

View 10 Replies View Related

HTC Hero :: How To Set Multiple Email Addresses On Phone?

Aug 26, 2009

I use G mail and have my 5 email accounts running through it. I can compose and email and "select" which email account to send it from within G mail. However, in Android on an HTC Magic, you cannot select which account to send "from", you can only send from the g mail account (in the g mail app). Yes, I know you can configure each one with an I MAP account, but I don't want that. I use G mail to store everything. So my question to existing HTC Hero users is: In the G mail application on a HTC Hero can you send from multiple email addresses?

View 5 Replies View Related

Android :: How To Access Email Addresses In Application?

Mar 17, 2010

I have the following code through which I am able to retrieve phone numbers. Somehow, I am not able to retrieve email addresses by using android.provider.Contacts.People API.

import android.app.AlertDialog;
import android.app.ExpandableListActivity;
import android.content.ContentUris;
import android.content.Context;
import android.database.Cursor;
import android.net.Uri;
import android.os.Bundle;
import android.provider.Contacts.People;
import android.view.View;
import android.widget.ExpandableListAdapter;
import android.widget.SimpleCursorTreeAdapter;
import android.widget.TextView;
import android.widget.ExpandableListView.OnChildClickListener;

public class ShowContacts extends ExpandableListActivity implements OnChildClickListener { private int mGroupIdColumnIndex;
private String mPhoneNumberProjection[] = new String[] { People.Phones._ID, People.NUMBER // CHANGE HERE }; private ExpandableListAdapter mAdapter;
@Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState);
// Query for people Cursor groupCursor = managedQuery(People.CONTENT_URI,
new String[] {People._ID, People.NAME}, null, null, null);
// Cache the ID column index mGroupIdColumnIndex = groupCursor.getColumnIndexOrThrow(People._ID);
// Set up our adapter mAdapter = new MyExpandableListAdapter(groupCursor, this,
android.R.layout.simple_expandable_list_item_1,
android.R.layout.simple_expandable_list_item_1,
new String[] {People.NAME}, // Name for group layouts
new int[] {android.R.id.text1},
new String[] {People.NUMBER}, // AND CHANGE HERE
new int[] {android.R.id.text1});
setListAdapter(mAdapter); }
public class MyExpandableListAdapter extends SimpleCursorTreeAdapter {
public MyExpandableListAdapter(Cursor cursor, Context context, int groupLayout,
int childLayout, String[] groupFrom, int[] groupTo, String[] childrenFrom,
int[] childrenTo) { super(context, cursor, groupLayout, groupFrom, groupTo, childLayout, childrenFrom, childrenTo);
} @Override protected Cursor getChildrenCursor(Cursor groupCursor) {
// Given the group, we return a cursor for all the children within that group
// Return a cursor that points to this contact's phone numbers
Uri.Builder builder = People.CONTENT_URI.buildUpon();
ContentUris.appendId(builder, groupCursor.getLong(mGroupIdColumnIndex));
builder.appendEncodedPath(People.Phones.CONTENT_DIRECTORY);
Uri phoneNumbersUri = builder.build();
return managedQuery(phoneNumbersUri, mPhoneNumberProjection, null, null, null);
} } @Override public boolean onChildClick(android.widget.ExpandableListView parent,
View v, int groupPosition, int childPosition, long id) {
AlertDialog dialog = new AlertDialog.Builder(ShowContacts.this)
.setMessage(((TextView) v).getText().toString())
.setPositiveButton("OK", null).create();
dialog.show(); return true; } }

View 2 Replies View Related

Motorola Droid X :: All Sent Email Addresses Showing Up In Contacts?

Jul 27, 2010

I am a new droid user, coming from bberry tour. Want to love the X and it is slowly growing on me. I am using an activesync account with for my work email which syns calendar/contacts/email. For some reason every email address that i have ever sent an email to shows up as a contact.anyone else seen this or know how to resolve? all of my contacts are in there that i want but there are an additional 500+ "contacts" that are just email addresses that i have sent to through work.

View 5 Replies View Related

Sprint HTC Hero :: Does Anyone Know How To Sync Yahoo Email Addresses

Dec 18, 2009

I am trying to find out how to sync my addresses from yahoo to my address book in my contacts.

View 12 Replies View Related

Sprint HTC Hero :: Deleting History Of My Email Addresses?

Feb 25, 2010

This might sound strange but I want to delete the history of my email addresses on my hero, I'm selling something on craigslist and when I reply to them from my computer or whatever it shows up on my phone and I'm like who the H3ll is this??? and then it dawns on me that it's someone I emailed about the POS Pre I'm selling
If that didn't make sense, basically when I go to shoot an email on my hero, as I'm typing who I'm sending it to, it shows a list of everyone that I've emailed starting with whatever letter I'm pressing, normally and most of the time that's awesome, but sometimes, like the situation I stated above it's a big pain in the arse.

View 1 Replies View Related

Samsung Fascinate :: Messaging - Email

Oct 23, 2010

I've just noticed a few things on the SF that have made me wonder if I'm missing something or if it can be changed.

First scenario.. I'm reading a text. I hit the "back" button, and it throws me to the homescreen sometimes. Then I hit the messaging button again, it brings me back to that specific text convo. I hit the back button again, and it now goes back to my inbox. Why? Is there something I'm doing that sometimes kicks me back to the homescreen instead of inbox?

Second scenario.. I'm sending a text to 2+ people. When it sends it, it essentially makes up a new contact of those people to send it to. What it should do, I think, is update each individual person's text log with that text. I find it really annoying to send a text to 10 people, and then when I get a text back from one of them, the text I sent them doesn't appear in the history. Any way to change that?

Thirdly.. I'm sure I'm just missing this, but is there any way to "mark read all" emails? I get a lot of junk emails, and so far I've had to just click through each one. Kind of cumbersome.

And this last one doesn't pertain to either email/messaging, but it's something that has caught my eye. Sometimes when I get a call, it goes to that whole "puzzle" idea and makes me fit the "Answer" puzzle in the blank spot. Other times, it just has an "Answer" button to click. It doesn't really bug me, but why does it do one sometimes instead of the other?

View 2 Replies View Related

Samsung Fascinate :: Pop Email Error

Oct 27, 2010

My email from my pop3 account worked fine the first 2 days (Sept 22). Ever since my company pop3 account will not sync unless I reboot the phone. It will not manually load messages. And has anyone else had issues with viewing emails? OMG is it slow. I moved from BB to the Facinate. BB has got them beat by a mile on emails. We won't even talk about syncing with outlook and the salesman at Verizon.I do not have the update as mine will not update which Verizon said SOME are having issues updating.

View 10 Replies View Related

Samsung Fascinate :: How To Save Email

Sep 19, 2010

I got a Samsung Fascinate a week ago after having Blackberry for 8 years. I want to save emails to somewhere (anywhere!) on my phone. I can't figure out how to do this.

If this isn't able to be done, I can't believe it... Please give me some advice. I'm not impressed with email handling on this phone in general, but if I can't save them somewhere, I don't know what I will do...

View 1 Replies View Related

Android :: How To Get List Of Email Addresses From Contacts For Autocomplete Field?

Aug 10, 2010

Ive read through the docs and searched on here, but I'm not quite understanding how all the pieces fit together. Was wondering if anyone has a clear explanation of how to grab a single column of data from Contacts and have it populate an autocomplete box.

View 2 Replies View Related

HTC Desire :: HTC Sync Corrupting Email Addresses In Outlook 2010

Sep 14, 2010

I have a HTC Desire (updated to Froyo) and have been syncing my contacts with my Outlook 2010 (running Windows 7 Enterprise-32 bit). Everything seems to synchronize well but somehow the "email address-Display As" fields gets updated in outlook, which then doesnt allow me to send emails to those email addresses unless I manually go and update the display as field inside my outlook contacts. I have manually updated all the contacts once already hoping that it may not be due to HTC Sync but when I did the sync then immediately all my Outlook email ids got updated.

Now everytime I try and send an email I immediately get Undeliverable receipt from System Administrator stating the following:
Your message did not reach some or all of the intended recipients.
Subject: test Sent: 14-Sep-2010 17:41
The following recipient(s) cannot be reached: abc@xyz.com on 14-Sep-2010 17:41
None of your e-mail accounts could send to this recipient.

View 36 Replies View Related

General :: How To Eliminate Suggested Email Addresses In Yahoo Mail

Jan 21, 2014

I use the Yahoo mail android app (as well as gmail). When I create an email in the app and "click" in the "to" field and type a letter I get a whole raft of email address suggestions that are not in the contacts. I've looked in my phone contacts and they aren't there. I've looked at Yahoo mail settings and see nothing there. I've gone to the desktop Yahoo mail an tried looking in contacts there and they don't show up. Many of these are addresses of people that I recognize and have probably either sent or received an email from them but certainly never saved them as a contact. I tried long pressing on the suggested address and it highlights it but no options are given. It doesn't happen in my gmail. I've gone to URL...contacts and they don't show up there. I know I should just switch to gmail only but this is an old address that I want to keep active. I have a Moto X with Kitkat. This has followed me from phone to phone.

View 1 Replies View Related

General :: How To Send Email To Single User With Multiple Addresses

Feb 8, 2012

I just got a Samsung Skyrocket on AT&T. It's running 2.3.5. I love the phone but have one question:

When sending an email, NOT Gmail, and I select the recipient from my contacts, it automatically picks up the default email address that was selected for that contact within the contact manager. Several of my contacts have more than one email address and I need to be able to choose which address to send to. The thing is, I see no option to do so when selecting the contact in the email message. The only way around this that I can see is to have separate contact entries for each email address. That would mean I could have four or more contact entries for each person. Totally not acceptable.

So, am I missing something here? Is there a way to select which email address you want to send to when creating a message? Or do I have to go in and change the default email address within the contact before I compose my emails?

View 2 Replies View Related

Samsung Fascinate :: Email Indicator Light

Oct 26, 2010

Email arrives in my inbox on either corp or gmail account. Is there an external led or light that indicates to me that an email arrives?Blackberry has a little red light that flashes.if my Samsung Fascinate doesn'thave this then it would be the first thing i would claim i miss from the blackberry.

View 13 Replies View Related

Samsung Fascinate :: Synching Email With Droid

Nov 29, 2010

I am trying to setup email on this phone for a user, i'm able to get it to download contacts, email in the Deleted folder, But it does not sync the Inbox folder.I have the same issue using the default software and using the Exchange Touchdown software.I'm sure some of you have gotten this work on droid, Any idea what could be my problem?I'm using Exchange 2003 by the way.

View 9 Replies View Related

Samsung Fascinate :: Email Error Message

Sep 29, 2010

I have yahoo plus. When I loaded it on my Fascinate it was successful. I went thru all the steps fine. Now when I try to open the email it says Sorry! The application email (process.com.android.email) has stopped unexpectedly. Please try again....force close

any insight? I would try to remove the email and start again, but the message pops up so quickly I cant even get to the setting icon.

View 2 Replies View Related

Samsung Fascinate :: Microsoft Outlook Email

Nov 15, 2010

My work email is outlook. How do I link my phone with this account.

View 3 Replies View Related

Samsung Fascinate :: Can't Setup Email / Resolve It?

Sep 18, 2010

So I just got the Samsung Fascinate last night and am having a problem setting up my email. I set up the gmail which they said I had to in order to access the marketplace - however when I go to the email app to set up my charter email account - I enter my email address and password - it says it's checking incoming network and then gives me an error saying it is unable to open connection to server. I've tried the automatic set up and manual - and I have no luck with either one. I have Verizon as my carrier - and looked on their site and Charter is a server that I should be able to set up email with on this phone.

Obviously I"m not that "saavy" with this stuff - and am not sure what to do to solve this problem. Wanted to check here first before calling them.

View 2 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved