NOKIA 303: gmail sender name setting?

Hello everybody!
Just bought the new asha 303.
I use primarily gmail on the device and I'm not able from the pre-installed nokia e-mail application to send an e-mail with my name as the sender of a message instead of the e-mail address.
Only from the nokia application and with gmail I have this problem.
For example using hotmail, settings are always the same!
Need some help, please!

Does this happen with every message? Normally, if you have saved a contacts number under more than one name, their name will not show up in the SMS. This is usually because the phone is unsure what details (name) to use as the number has been used for more than one name.
Hope i helped!
Mohmed Patel

Similar Messages

  • Nokia E52 Message Sender Name Field is not updated...

    Nokia E52 Message Sender Name/Field is not updated automatically on Firmware 054.003!
    Issue 1: Message Sender Name/Field is not updated automatically after changes made in contacts.
    e.g. Message send by Mr. A is displayed in inbox, however when same contact changed to Mrs. AB in contacts does not update sender name/field inside inbox. Sender name remains Mr. A physically on handset. However the changes made to contacts and Message Sender Name/Field is updated automatically on use of Nokia PC Suite 7.1.60.0 and Nokia Ovi Suite 3.0.0.290 but not on phone. 

    Thanks for sharing the answer here, it is really helpful for others with the similar issue.
    Qiao Wei
    TechNet Community Support

  • My popup notification always has the same sender name when receiving Gmail emails, never the actual name?

    I have four email addresses feeding into my Thunderbird (on mac) which I have used for years. In recent months, though, whenever I receive an email, the popup notification gives the sender as a person who occasionally emails me, never any other sender name. Is there any way I can stop this happening? It is annoying!! Thanks

    I have had the same problem and I think I have a solution, at least one that is working for me.
    In mail preferences - accounts - advanced, turn on "Use IDLE command if server supports it"
    In mail preference - General, set Check for new messages: Manually.
    Don't check for new messages manually, (still doesn't work) but wait for the IDLE command to push new messages to you.
    This is for a GoDaddy mail server, using Apple Mail 7.1 on OS X 10.9.1.
    Good luck.
    Edit: sorry I thought this was the GoDaddy thread (similar issues) I'll leave this here incase it works for Gmail.
    Message was edited by: caffeinemedia

  • Java Callout - how to set Sender Name by InstanceName

    I have a following code on Java Callout executed on Listening Channel:
    import oracle.tip.b2b.message.InstanceMessage;
    import oracle.tip.b2b.model.instance.Instancemessage;
    // some other imports //
    public class GetPartner implements Callout {
      public void execute(CalloutContext calloutContext, List input,
      List output) throws CalloutDomainException,
      CalloutSystemException {
      Logger log = Logger.getLogger(TransportCallout.class.getName());
      DiagnosticService.log("MKRTransportCallout: Init");
      try {
      log.setLevel(Level.INFO);
      CalloutMessage message =
      (CalloutMessage)input.get(0); 
      Instancemessage inst = new Instancemessage();
      InstanceMessage instance = new InstanceMessage(inst);
      String name = instance.getSenderId();
      String name2 = instance.getSenderName();
      log.info("SENDER ID FROM JAVA CALL " + name);
      log.info("SENDER NAME FROM JAVA CALL " + name2);
    Both logged values are null.
    My question is - how to connect CalloutMessage variable with Instancemessage variable via Java code?
    My variable "inst" is null, because the context from variable "message" is not related with it - there is no connection between CalloutMessage and Instancemessage. How to set connection like this?

    just a short addition. At the moment i use the following code to generate a MimeMessage:
    try
                // Get session
                Session session = Session.getDefaultInstance(MailQueue.props, null);
                // Define message
                this.message = new MimeMessage(session);
                message.setFrom(new InternetAddress(from));
                message.setRecipients(Message.RecipientType.TO, InternetAddress.parse(to, false));
                message.setSubject(subject);
                // pass the mail content and set the Mime Typ
                message.setContent(msg, MimeTyp);   
            catch (MessagingException me)
            } 

  • Setting Mail sender name manually

    hi
    I am using 'SO_NEW_DOCUMENT_SEND_API1' function module to send mails. This function module takes the current user name as the  mail sender name and sender mail ID.
    Is there any way to set the mail sender name or sender mail id manually.
    Thanks in advance,
    Padmini

    Hi.
    First populate the Receiver ID's.
    eMail Id of the Selected Employee
      IF not P_RECV is initial.   
        reclist-receiver = p_recv.
        reclist-rec_type = 'U'.
        APPEND reclist.
        CLEAR  reclist.
      endif.                      
    Individual Email ID's
      LOOP AT s_mail.
        reclist-receiver = s_mail-low .
        reclist-rec_type = 'U'.
        APPEND reclist.
        CLEAR  reclist.
      ENDLOOP.
      sort reclist by receiver.
      delete adjacent duplicates from reclist comparing receiver.
    Then use the FM you have used.
    data: lv_pernr type pa0105-pernr.
      DATA: v_send_address LIKE soextreci1-receiver. "Sender add
      DATA: lv_reclist like reclist occurs 0 with header line.
            lv_reclist[] = reclist[].
    Get Email of Current User {
      select pernr from pa0105
       into lv_pernr
       where subty = '0001'
         and usrid = sy-uname
         and endda ge sy-datum
         and begda le sy-datum.
      endselect.
      if sy-subrc = 0.
        select usrid_long from pa0105
         into v_send_address
         where pernr = lv_pernr
           and subty = '0010'
           and endda ge sy-datum
           and begda le sy-datum.
        endselect.
      endif.
    } Get Email of Current User
      CALL FUNCTION 'SO_DOCUMENT_SEND_API1'
        EXPORTING
          document_data                   = doc_chng
          put_in_outbox                   = 'X'
          sender_address                  = v_send_address
          sender_address_type             = 'SMTP'
        TABLES
          packing_list  = objpack
          object_header = objhead
          contents_bin  = objbin
          contents_txt  = obj_head
        CONTENTS_HEX                     =
        OBJECT_PARA                      =
        OBJECT_PARB                      =
          receivers                        = reclist
        EXCEPTIONS
          too_many_receivers               = 1
          document_not_sent                = 2
          document_type_not_exist          = 3
          operation_no_authorization       = 4
          parameter_error                  = 5
          x_error                          = 6
          enqueue_error                    = 7
          OTHERS                           = 8.
      IF sy-subrc <> 0.
        MESSAGE i000(zz) WITH 'Error while sending the e-Mail'(023).
        Leave to screen 1000.
      ELSE.
        MESSAGE s000(zz) WITH 'e-Mail sent successfully'(024).
      ENDIF.
      reclist[] = lv_reclist[].
      refresh: lv_Reclist.
    Guess this should work.
    Thanks and regards,
    Maheshwari.V

  • I can not change my mail sender name

    When I use iCloud.com for email, my sender name is incorrect and I can't get it to change, even though the correct name is set in the iCloud preferences and in my Apple ID.  Any suggestions?

    There is many kind of methods to do this but none of them can do in one shot for all, means change in one place (ipad, iphone, mac pc) and them forget the others, it depends from where you would send your mails you have to change in that place the id information, here is the tree methods whatever device you have.
    FROM IPAD IPHONE
    1. OPEN SETTING (GEAR ICON)
    2. GO TO MAIL, CONTACTS, CALENDARS
    3. OPEN ICLOUD MAIL ACCOUNT
    4. HIT ON "ACCOUNT"
    5. INSIDE OF ACCOUNT WINDOW HIT ON "MAIL" OPTION
    6. CHANGE THE "NAME" AS YOU DESIRE, THEN "DONE" (3 TIMES UNTIL EVERYTHING CLOSE)
    FROM ICLOUD EMAIL (PC OR MAC)
    1. OPEN "MAIL" ON ICLOUD (BLUE ENVELOPE ICON)
    2. HIT ON "GEAR ICON" (TOP RIGHT CORNER)
    3. SELECT "PREFERENCE"
    4. SELECT "ACCOUNT"
    5. CHANGE "FULL NAME" AS YOU DESIRE, THEN DONE
    FROM GMAIL ACCOUNT (if icloud is attached to)
    1. OPEN YOUR GMAIL ACCOUNT
    2. HIT "SETTING" (GEAR ICON AT THE TOP RIGHT CORNER)
    3. SELECT "SETTING"
    4. CHOOSE "ACCOUNTS AND IMPORTS"
    5. POINTING ON YOUR ICLOUD ACCOUNT HIT "EDIT INFO" (AT THE MIDDLE RIGHT SIDE OF YOUR SCREEN)
    6. ON "EDIT EMAIL ADDRESS" SMALL WINDOW CHANGE THE "NAME" AS YOU DESIRE
    7. HIT ON "NEXT STEP"
    8. FINALLY HIT " SAVE CHANGES"

  • How to remove sender name in field "From" in Notification page

    I would like to remove name ( LIUNI, ANTONIO_ ) (bold text and underline) from message and field "From" in notification page.
    I have 2 problems below:
    1.) This message "_*LIUNI, ANTONIO*_ has completed their appraisal of KERINS, ANNE MARY"
    Should change to "A multirater has completed their appraisal of KERINS, ANNE MARY"
    2.) Field From, must be blank: From: LIUNI, ANTONIO_ -> From: <Blank>
    It call standard workflow HRSSA.
    Please provide me coding in controller to set item attribute values in field "From" to blank and remove sender name in message+
    Below is the example notification:
    This notification does not require a response.
    LIUNI, ANTONIO_ has completed their appraisal of KERINS, ANNE MARY.
    Personalize "Notification Details Function"
    Personalize "Notification Details Attributes"
    Personalize Table Layout: (leftTable)
    From LIUNI, ANTONIO_
    To BILLOUD, CLAIRE
    Sent 26-Apr-2010 09:53:06
    ID 66666475
    Personalize Stack Layout: (rightStack)
    Personalize Table Layout: (rightTable)
    Personalize Stack Layout
    Personalize Stack Layout
    Personalize "Summary"
    Edited by: jamras on Apr 26, 2010 1:34 AM

    Thank you for your reply.
    Do you mean region in notification page?
    Below is region in notification page.
    Field From is in Region: /oracle/apps/fnd/wf/worklist/webui/NtfDetailsAttr.leftTable
    Document Name /oracle/apps/fnd/wf/worklist/webui/NtfDetailsAttr
    Message is in Region: Notification Details Function
    Document Name /oracle/apps/fnd/wf/worklist/webui/NotifDetailsRG
    Now I'm working on extension controller in the page below (I'm submit button in this page).
    /oracle/apps/per/selfservice/appraisals/webui/PartCompletePG
    My controller -> fao.oracle.apps.per.selfservice.appraisals.webui.FaoPartCompleteCO
    I put the following coding in this controller. It removed value in workflow attribute, but it didn't remove value from notification page.
    SSHRParams sshrparams = new SSHRParams(oapagecontext.getRootApplicationModule());
    String wfItemType = sshrparams.getItemType();
    String wfItemKey = sshrparams.getItemKey();
    // String wfProcess = "HR_APPRAISAL_DETAILS_JSP_PRC"; ///sshrparams.getProcesName().toString();
    wfClass.setItemAttrText(oapagecontext, wfItemType, wfItemKey,
    "HR_APPRAISAL_FROM_USER_ATTR", "");
    wfClass.setItemAttrText(oapagecontext, wfItemType, wfItemKey,
    "FORWARD_FROM_USERNAME", "");
    wfClass.setItemAttrText(oapagecontext, wfItemType, wfItemKey,
    "FORWARD_FROM_DISPLAY_NAME", "");
    wfClass.setItemAttrText(oapagecontext, wfItemType, wfItemKey,
    "FORWARD_FROM_PERSON_ID", "");
    wfClass.setItemAttrText(oapagecontext, wfItemType, wfItemKey,
    "HR_APPRAISAL_FROM_NAME_ATTR", "");
    Thank you for your help.

  • Change in sender name of mail sended through workflow

    Hi All,
    I have requirement where we want to chage the sender name decription for mails which are going through workflow.When we send mails through send mail step in workflow it is taking sender decription name automatically as "GSAP E1B WORKFLOW SYSTEM".
    I have to change this decription to "OSIRIS Invoice". Is there any way to change sender name?
    We are using SENDTASKDESCRIPTION method of SELFITEM object in send mail step.
    Any help on this regards will be grate help...
    Regards,
    Rahul

    Hello Rahul,
    here, the sender's name is the user's name of the background user performing this task, i.e. usually WF-BATCH.
    If you do not have any other workflow scenarios running that could interfere here you could possibly just change that user's name.
    Otherwise you have to re-program the sendmail step to specifically set the sender description.
    Best regards,
    Florin
    P.S: Workflow issues have a separate forum:
    SAP Business Workflow

  • How do i change the my sender name that is appearing in my email that's incoming? its correct on my iPhone email and my internet carriers email access site.

    How do i change my sender name that is appearing in my email that's incoming? it's correct on my iPhone email and my internet carriers email access site, but not on my imac email. for instance, when someone else gets my email...it says its from "mike Hoak".  I need it to be me (Karen), not one of my random contacts.  not sure how it even happened.

    Hi karen elizabeth I,
    I understand that you want to change the full name associated with your email account in Mail on OS X. Here is an article that will help you find this setting and adjust it:
    Mail settings you might need from your email provider - Apple Support
    http://support.apple.com/en-is/HT1277
    This setting can be found by going to your Mail Preferences, then the Accounts tab, then selecting your account. Thanks for being a part of the Apple Support Communities!
    Regards,
    Braden

  • Change Mail for Exchange sender name

    Hi,
    How can I change the sender's name for outgoing emails in Mail for Exchange application?
    I am using Nokia 5800 Xpress Music.
    Thank you!

    Well,
    Nokia MfE doesn't reply to my mails. I guess that only poeple using MfE v 2.09.158 who are not registered to the MfE Service (I guess you have to pay a monthly fee as it is with the Blackberry service) have the sender name problem. Of course you can use MfE with other mail providers than Nokia MfE. But in this case "Mail for Exchange" will appear as sender name.
    I now switched over to MfE's competitor "RS" and don't have this annoying problem anymore. The alternative to RS would be using the old MfE version where I didn't have that sender name prob. But as my battery was empty after 15 hrs using the old MfE version (with RS my battery lasts 3 days !!!) there is no real alternative to RS!
    This sender name problem seems to be part of Nokia's business strategy. As they want to compete with Blackberry they want you to register (and pay the MfE mail service monthly). Probably that's the reason why you get MfE for free (RS costs 50 US$).
     Any comments on my theory?!
    BR, Johnny

  • Changed Sender name/address of previously received email?

    Something weird is happening with my Apple Mail.  I'm receiving some old messages that I already received last year, but the Sender name has been changed to a totally different person.  That is, the re-sent message has the wrong Sender name and not the name of the sender who originally sent me the message.  I've only received a couple of these messages but when I looked around in my mailbox, I noticed that this same thing has happened to other messages too. 
    Has this happened to anyone else?  Is my mail getting too full?  Any advice would be appreciated.

    ''ricktls [[#question-1023149|said]]''
    <blockquote>
    I will receive several emails when I turn on the computer. Most of the emails will have the correct sender and their message details. Sometimes though I will receive the emails from different senders but when I open the message detail the messages are all the same. Is there a setting that I can use to fix this problem?
    </blockquote>
    ''Airmail [[#answer-635676|said]]''
    <blockquote>
    Your folder is getting corrupted.
    Right click the problem folder and select Properties. Then Repair Folder.
    '''Be prepared to lose some messages if the corruption is very bad.'''
    Read this on how to maintain your email system to help prevent this in the future.
    http://kb.mozillazine.org/Keep_it_working_-_Thunderbird
    </blockquote>
    I have tried repairing the folder but with no improvement

  • Cryptic sequence of numbers as sender name for invitations

    When I want to send an calendar invitation to my business address, my sender name is a cryptic sequence of numbers instead of "first name last name". These are the steps:
    1. Receiving Email form my iPad with the invitation
    2. Download the attached ics to my desktop of the windows PC
    3. Drag&Drop the ics to the Lotus Notes Calendar
    4. The invitation is visible, the sender name is i.e. 2fjfu3oodsjdf90499fj993efj0ßßejfefjß39eß939hgsdlfnasdäfa9e9
    I know that this invitation is from my private account. But what about friends I wanted to invite? Or should I invite only friends with apple equipment?!?! ;-)

    Well,
    Nokia MfE doesn't reply to my mails. I guess that only poeple using MfE v 2.09.158 who are not registered to the MfE Service (I guess you have to pay a monthly fee as it is with the Blackberry service) have the sender name problem. Of course you can use MfE with other mail providers than Nokia MfE. But in this case "Mail for Exchange" will appear as sender name.
    I now switched over to MfE's competitor "RS" and don't have this annoying problem anymore. The alternative to RS would be using the old MfE version where I didn't have that sender name prob. But as my battery was empty after 15 hrs using the old MfE version (with RS my battery lasts 3 days !!!) there is no real alternative to RS!
    This sender name problem seems to be part of Nokia's business strategy. As they want to compete with Blackberry they want you to register (and pay the MfE mail service monthly). Probably that's the reason why you get MfE for free (RS costs 50 US$).
     Any comments on my theory?!
    BR, Johnny

  • Some sender names not showing in Mailbox view, but show in e-mail window

    Some of the e-mails I receive instead of having the sender name appear in the From column in my inbox have their e-mail address appear instead. They are people who are in my Address Book with that e-mail address, and their name does appear in the From line in the e-mail itself.
    Is there some setting I need to change so that their name appears in the From column instead of their e-mail address? Thanks!

    I am seeing very similar behavior. For me, when I view the message in the list of all messages in the InBox window, for a few senders only the e-mail address is displayed. However, when I select that mail message, the person's name is properly displayed in the message viewing panel.
    Have you been able to figure out what is going on?
    - Philip

  • EWS Managed API: Email sender name incorrect if loading properties of multiple emails and several emails have same email address (but different names)

    Hi,
    I have an issue using the Exchange Web Services Managed API. I'm essentially implementing an 'inbox', and am essentially using two calls:
    folder.FindItems(filter, view) with the view set up with the 'idonly' property.
    The returns a 'FindItemResults<>' object containing a set of items.
    And then calling service.LoadPropertiesForItems(items, props), where the props contains all 'first class properties', which includes the sender details.
    Now, the inbox contains several emails from the same email address but with different displaynames.
    E.g. There may be one email from "Bob <[email protected]>" and another email from "Alice <[email protected]>" and another email from "Charlie <[email protected]>" etc.
    The issue is that in the information that EWS returns from the call to LoadPropertiesForItems, every email ends up with the same sender name (from the first one in the list)!
    i.e. When I enumerate through the returned items, the item.Sender.Name will always be"Bob" for every email where Sender.Address is [email protected] 
    I have debugged this with a http sniffer just to ensure that it really is the EWS coming back with this information rather than anything in the managed layer.
    Is this a known issue? How can I work around this (without querying every single email for the sender name individually, as that would be too slow)?
    Thanks

    Hi Venkat,
    Thanks for the reply.
    The scenario is that the client receives emails from a (3rd-party) automated system. The email address from this automated system is always "noreply@<blah.com>", while the display name is used to differentiate the actual sender.
    I suspect that this kind of system will likely become more widely used, and so for us will increase in priority (obviously its a priority for our client already)!
    Just for the record, if this is a known issue do you have a bug number or equivalent for it? (I tried to search but couldn't locate it).

  • Nokia 303 social app missing. "apps and games" cra...

    I had problems with my nokia 303 s40 phone. Everytime i'll open "apps and games" phone crashed and reboot. Now i can't access my installed games and applications. And also Social app is missing which is a built in on the phone. please help

    Connect your phone to a computer & select Nokia Suite mode. If you do not have Nokia Suite on your pc you can download it from here. Now open the Nokia Suite & click on the “green icon of arrow pointing downwards”.
    If any updates are available they will be shown in ‘green’. If not you may reinstall the current version. Reinstall option is shown in ‘blue’. If no option to reinstall is shown, please wait for sometime it will become visible.  Then the Nokia Suite will download the new software version of the phone. After it you will be prompted to take a complete back up of the device content. Please do not skip this step as reinstallation will erase all the personal data from the phone like contacts, messages, calendar entries etc. But when restoring the backup do not restore settings.
    Please note that if you have set a memory card password & you have forgotten its code then take a backup of the card data also as the card will be locked after update and can only be unlocked if you enter the correct code or by ways mentioned in this thread.
    Also note that while updating the device ensure the following things-
    The device is full charged.
    The internet connection Is of good speed & has a backup in case of power loss.
    The PC should also be connected to back up power source as if the process is interrupted the phone may go dead. More on update failure & its remedies here.
    Please do not run any resource intensive programs in the background while updating as it may freeze the PC which in turn will lead to a dead device.
    Ignore all the windows pop-up notifications about device being disconnected.DO NOT DISCONNECT THE PHONE UNTIL UPDATE IS COMPLETED.
    It will be better if you disable security keyguard & PIN code request before proceeding with Update/Reinstallation.
    Sometimes the device may show Test Mode. Do not panic & DO NOT remove the cable. Let the process complete.
    Also check out this video on YouTube with instructions for update.
    If problem persists, please visit the nearest authorised Nokia Care Centre. This is because at nokia care software updating is done by different means as mentioned by armagon in this thread
    Please mark the post as solution if it solves your problem.
    Current Device - Nokia Lumia 1020/920

Maybe you are looking for

  • Where to see the change phases in status.

    Hi We are dealing with cases (SCASE) when the status changes (example, from warning to customer status =5 , to next warning ,status =10). In the 'history'(log)button one can read all about these, but at times I want to know ""when"" was the status ch

  • STLPort compile error V4.0

    I have encountered the following error when I tried compiling the STLPort release 4.0 in new Sun Solaris compiler 6 update [Sun WorkShop 6 update 1 C++ 5.2 2000/09/11]. CC -mt -library=%none,Crun -template=wholeclass -I. -I/usr/local/src/STLport/STLp

  • Rss feed not displaing

    A friend of mine is developing this site http://79.170.44.97/loveyourdoorstep.co.uk/ and has asked me to help! I am stuck. On the front page text is provided by an rss. It works in all browsers except firefox. When I look at the source the code is th

  • Since I updated to Mac OS x 10.6.8, I am unable to burn a CD on iTunes

    Updated my Macbook to Snow Leopard a few months ago because it stopped getting all updates (thanks Apple). Since I've updated, my iTunes is currently on version 11.1.5 and it will no longer burn CDs. The CD loads and initialises the burning process b

  • Mozilla Firefox (not responding) happens every 9 minutes.

    In Windows 7, every 9 minutes Firefox hangs for about a minute with the message "Mozilla Firefox (not responding)". After about a minute it will work just fine. It happens on all webs sites. I've tried various things to no avail. (Disabled add-ons, e