Incorrect sender ID when sending Tap, Heartbeat and Sketch messages

I reported this bug through Apple feedback last night. Adding here with additional details in case others see this issue or have a suggested workaround.
On Watch, select a friend who has an Apple Watch, send a Message and the recipient sees the message from the correct sender ID (matches the iPhone "start new conversations from" setting).  So far so good.  For that same friend, send a Tap, Sketch or Heartbeat, the recipient receives the item, but the sender ID is INCORRECT.
Background: I have two iPhones that use the same AppleID, one belongs to me, the other to my daughter.
See the embedded screen capture from my iMessages settings. Text Messages sent to friend from Apple Watch correctly show the sender as the +1(978)771-xxxx number.  Tap, Heartbeat and Sketch messages sent to that same friend incorrectly show the sender as +1(978)760-xxxx.  It appears that Tap/Heartbeat/Sketch messages incorrectly use the first item from the "you can be reached by imessage at" list instead of the checked item in the "start new conversations from" setting.
This is a serious bug for all the obvious reasons. All Apple Watch messages must respect the "start new conversations from" setting.

Hey DarKOrange  I am having the exact same problem as you. Ican receive digital touch from my friend but I don't seem to be able to send one back. A couple of times I did get a message saying message was unable to send but most of the time they just fade out and nothing happens.
I Did ask in the Apple Store yesterday but the guy in there didn't have a clue, told me to google it!!!. Dont think they have had much hands on yet  but hope apple fire out an update soon!!

Similar Messages

  • The left side of my home button is screen is kinda feel like hollow when I tap it and it makes a sound too. It is bulge,a little. I thought every ipad is hard to touch but why mine is not? Help please,what should I do?

    The left side of my home button is screen is kinda feel like hollow when I tap it and it makes a sound too. It is bulge,a little. I thought every ipad is hard to touch but why mine is not? Help please,what should I do? Please I need your help.

    The damage has been done then
    Take it to Apple and pay for a replacement
    Here in the States a replacement cost $229
    Allan

  • My songs from iTunes won't download, I went to the downloads tap and all seven of my new songs say "download error, tap to retry" and when I tap on one a message pops up saying " this song could not be downloaded at this time". What do I do?

    My songs from iTunes won't download. I recently just purchased 7 songs and they took my money but now the songs won't download to my phone. I have gone to the download screen on the iTunes app and under each song it says "download error. Tap to retry". When I tap to retry a song a message pops up saying "this song could not be downloaded at this time." And it gives me two options. Either done or retry. I have tried to download them many times. I signed out and signed back in on iTunes, restarted my phone, and even checked for any updates. Nothing seems to be working. They charged the money from my card but now my songs won't download. What do I do?

    Hello Bdev15,
    I would be concerned too if the songs I purchased from iTunes were not downloading to my iPhone. You have taken some great troubleshooting steps already, and thank you for providing the details of the steps you too.  I have a few additional suggestions to get it downloaded to your iPhone.
    First, I recommend checking to see if the download was interrupted:
    If your download was interrupted using your iPhone, iPad, or iPod touch
    From the Home screen, tap the iTunes app.
    For iPhone or iPod touch, tap More > Downloads. For iPad, tap Downloads.
    Enter your account name and password if prompted.
    Tap the blue download arrow to resume.
    iTunes: How to resume interrupted iTunes Store downloads
    http://support.apple.com/kb/ht1725
    If the songs still do not download, next I recommend downloading the songs when connected to another network.  For example, if you are using the cellular network, you could switch to Wi-Fi, or you could try an alternate Wi-Fi network.  Follow the steps in the section titled "iPhone, iPad, or iPod touch > Music" in the article below to download the songs:
    Downloading past purchases from the App Store, iBookstore, and iTunes Store
    http://support.apple.com/kb/ht2519
    If you are still not able to download the songs, you can report an issue with these purchases using the steps in this article:
    How to report an issue with your iTunes Store, App Store, Mac App Store, or iBookstore purchase
    http://support.apple.com/kb/ht1933
    Best,
    Sheila M.

  • IPhone 5S - when I tap MUSIC I get message to sign into itunes store, how to stop message

    When I tap MUSIC, on my iPhone 5S I get a popup message to log into iTunes. How to stop the popup message.

    Might be small glitch, try seeing if signing out and signing back in does you any good.
    Settings > iTunes and App Store > Tap on your Apple ID and choose the option "Sign Out".
    Simply go back into iTunes and App Store and re-enter your information make sure you enter the password in its case-sensitive form.

  • Message send failure when sending text message to none iPhones. Worked fine at apple store now not working for me again ( whether on wifi or cellular) what is wrong?

    Why am I getting message send failure from my iPad to a non-iPhone

    When I was in the Apple store on Friday with my iPad I asked the text the same question. we turned on my iPad and it allowed me to text text message anybody I wanted regardless of what the device. When I left apple store while I'm in the parking lot and I checked it again before I left the area and it still allowed me to text message anybody. Now it is not. And also I cannot email anybody from my iPad today to a non iPhone and that's wrong because until today I have been doing that for weeks. Hmmmm now what

  • HTMLDB_MAIL.SEND problem when sending HTML

    We had a test application running off of the Oracle hosted site. We used HTMLDB_MAIL.SEND and P_BODY_HTML successfully. However, now we are running on our own hosted site of the production release of 1.6 (no code changes whatsoever, just an export/import). When we send the P_BODY_HTML it is not converted to html, it is sent as text with the html tags embedded.
    In the meantime we have written our own mail procedure, but we were hoping the version of 1.6 that is available was the same as the hosted version.
    Is there something else we should be aware of?
    Thanks!

    Joel,
    I have the following with P_EMAIL_BODY my text body:
    create or replace PROCEDURE "MR_SEND_MAIL"
    ( P_TO_EMAIL IN VARCHAR2,
    P_EMAIL_BODY IN VARCHAR2,
    P_EMAIL_SUBJ IN VARCHAR2 ) is
    L_ERRMSG VARCHAR2(200);
    L_BODY VARCHAR2(4000):='';
    begin
    l_ERRMSG := 'HTMLDB_MAIL.SEND()';
    L_BODY:= L_BODY||'<HTML><HEAD><META http-equiv=Content-Type content="text/html; charset=iso-8859-1">'||chr(10);
    L_BODY:= L_BODY||'<META content="MSHTML 6.00.2900.2963" name=GENERATOR></HEAD>'||chr(10);
    L_BODY:= L_BODY||'<BODY style="MARGIN: 4px 4px 1px; FONT: 10pt Tahoma">'||chr(10);
    L_BODY:= L_BODY||replace(P_EMAIL_BODY,chr(10),'<BR>')||'</BODY></HTML>'||chr(10);
    HTMLDB_MAIL.SEND(
    P_TO => P_TO_EMAIL,
    P_FROM => '[email protected]',
    P_BODY => 'this must be viewed by an html enabled client',
    P_BODY_HTML => L_BODY,
    P_SUBJ => P_EMAIL_SUBJ);
    l_ERRMSG := 'PUSH_QUEUE.';
    BEGIN
    wwv_flow_mail.push_queue(
    P_SMTP_HOSTNAME => 'gilbert.esc.net',
                   P_SMTP_PORTNO => '25');
    EXCEPTION
    WHEN OTHERS THEN
    RAISE_APPLICATION_ERROR(-20080,'MR_SEND_MAIL: '||l_ERRMSG);
    END;
    end;
    It does not work properly. I'm using Groupwise and have my client set for HTML.
    Should I have mult-part somewhere?
    Any help be appreciated, Bill
    Message was edited by:
    Bill Carlisle

  • Ios7 incorrectly syncs music when "Manually manage music and videos" checked

    iPhone 5 with ios7.0.2
    Mac 10.6.8 with iTunes 11.1.1
    Since installing ios7 iTunes syncs music even though I always have the "Manually manage music and videos" checkbox checked.  Since I don't want to keep the same music on my Mac that I have on my phone, this results in the music on the phone being deleted when I manually drag new music onto it in iTunes.  This happened with the previous version of iTunes, before updating to 11.1.1, and still happens with 11.1.1.
    Other iPhone settings:
    Music: everything off / disabled
    iTunes & App Store: everything off / disabled
    iTunes settings:
    Summary tab: only "Manually manage music and videos" checked
    Music tab: nothing checked or selected
    Any ideas?
    Thanks,
    Mike

    Then you are the only person I know that can do that on a non-jailbroken iPhone. It is restricted by design to one library.

  • Iphone freezes when listening to music and SMS messaging

    I've had my iphone lock up on me a few time now and it only happens when i'm listening to music and messaging at the same time. i don't think that i would have to stop listening to music to message. anyone else have this problem?
    And also, when i'm browsing the web on the phone it sometimes just quits to the main menu. any ideas?

    No.

  • Why am I unable to send e mails from my IPhone or IPad and get message rejected from outgoing server, message placed in outbox

    Why am I unable to send e mails from my iPhone, and get message rejected by server and message put in outbox.  I have tried changing server ports but to no avail.  I am not very technically minded so any suggestions in laymans terms please.  This is a big problem as I work away frequently and need to answer e mails.  This also happens when at home and on my own wifi.

    Hey Pam3008
    The article below will give some troubleshooting steps to resolve Mail issues.
    iOS: Troubleshooting Mail
    http://support.apple.com/kb/ts3899
    Thanks for using Apple Support Communities.
    Regards,
    -Norm G.

  • Certain characters not appearing in the "full name" when sending e-mail

    I have certain characters in my full name of one of my e-mail aliases in iCloud. However, those characters are simply absent from the name shown as sender name when sending mail from Mail app in OS X. For me the problematic characters are C5 A1 and C4 8D (UTF-8 codes).

    Yes, š and č are those. Sorry, I wasn't sure if they will work here. I have my full name containing the š and č in the "Full Name" field of the e-mail alias settings on web interface to the iCloud Mail. But in Mail on OS X my name in the "From" field appears without those two characters (other characters are OK) when I select this alias. Also, those two characters are invisible at the recipient's side. And yes, if I sent a copy of such a mail to myself the š and č are missing again in the "From" field.
    However, I have the same full name with š and č for my main e-mail address (iCloud account name). Using this main e-mail address š and č appear everywhere!
    Message was edited by: mikkec

  • When trying to send E-mail via AOL i get the message "rejected by the server because it does not allow relaying" I have checked settings as per answers to similar question

    When trying to send E-mail via AOL i get the message "rejected by the server because it does not allow relaying" I have checked settings as per answers to similar question

    From which account does the email not send?  When sending from an account, the iPad will first try to use the aoutgoing server for that account.  If it can't it will try the other accounts listed.in the setting on the iPad for that account.  It soulds like the server for the account is not working and that the alternate server is resjecting the messag since it did not originate ffrom the account associated with that server,  That is to prevent sending spam.

  • When sending, spelling checks old text

    Is there any way to train Mail's spelling check to look at just new text before sending? When sending mail spelling check will run through old segments of the message that have already been checked for spelling.

    You shouldn't be including much of the old messages anyway. If you are not directly replying to a specific statement, you should trim out all the old message. There's nothing so annoying as receiving mail from someone who leaves the entire original message in the reply, just hanging out, for no particular reason. Go to the following site, scroll down, and read the "Replying, quoting and forwarding" section:
    http://www.penmachine.com/techie/emailtrouble_2003-07.html

  • When i try to send email from my ipad i get the message The recipient "£)()&&£)" was rejected by the server. This has only just started to happen and I don't know why. Please help. I have tried lots of things now and cannot solve it.

    When i try to send email from my ipad i get the message The recipient "£)()&amp;&amp;£)" was rejected by the server. This has only just started to happen and I don't know why. Please can someone help. I have tried lots of things now and cannot solve it.

    "Your email account" means to tap on the name of your email account. Whatever it is listed as in the settings.
    In my mail settings, one of my email accounts is a Comcast account. I tap on the Comcast name and it brings up this window.
    Then I tap on the arrow under the Outgoing mail server smtp setting to get to the next window.
    In the resulting window, I then tap on the arrow next to the smtp server under the Primary Server setting.
    That brings up this window in which I check to make sure that my user name and password have been entered correctly. If those items are missing, enter them in the appropriate fields and then tap done.

  • HT4519 sometimes when I send a mail it will go regardless of location or whether it has attachments, but more often than not they won't go and the message " a copy has been placed in your outbox. The sender address "my email blah blah was rejected by the

    Sometimes when sending a mail it will go more often it won't go, it doesn't seem to be relevant  to my geographic position and the message" a copy has been placed in your Outbox. The sender address" my email blah blah" was rejected by the server"     . Any ideas?

    Check the outgoing mail server setting. Make sure that your username and password are in there.
    Settings>Mail, Contacts, Calendars>Your email account>Account>Outgoing mail server - tap the server name next to SMTP and check in the primary server and make sure your username and password are entered and correct - even if it says that the password is optional.

  • Suddenly cannot send messages from ipad. Can send from iPhone and they show up on messages but when sending from ipad a they say not delivered

    Suddenly cannot send messages from ipad. Can send from iPhone and they show up on messages but when sending from ipad a they say not delivered

    Using FaceTime http://support.apple.com/kb/ht4319
    Troubleshooting FaceTime http://support.apple.com/kb/TS3367
    The Complete Guide to FaceTime + iMessage: Setup, Use, and Troubleshooting
    http://tinyurl.com/a7odey8
    Troubleshooting FaceTime and iMessage activation
    http://support.apple.com/kb/TS4268
    iOS: FaceTime is 'Unable to verify email because it is in use'
    http://support.apple.com/kb/TS3510
    Using FaceTime and iMessage behind a firewall
    http://support.apple.com/kb/HT4245
    iOS: About Messages
    http://support.apple.com/kb/HT3529
    Set up iMessage
    http://www.apple.com/ca/ios/messages/
    iOS and OS X: Link your phone number and Apple ID for use with FaceTime and iMessage
    http://support.apple.com/kb/HT5538
    How to Set Up & Use iMessage on iPhone, iPad, & iPod touch with iOS
    http://osxdaily.com/2011/10/18/set-up-imessage-on-iphone-ipad-ipod-touch-with-io s-5/
    Set Up Alert Sounds
    http://www.quepublishing.com/articles/article.aspx?p=1873027&seqNum=3
    Extra FaceTime IDs
    http://tinyurl.com/k683gr4
    Troubleshooting Messages
    http://support.apple.com/kb/TS2755
    Troubleshooting iMessage Issues: Some Useful Tips You Should Try
    http://www.igeeksblog.com/troubleshooting-imessage-issues/
    Setting Up Multiple iOS Devices for iMessage and Facetime
    http://macmost.com/setting-up-multiple-ios-devices-for-messages-and-facetime.htm l
    FaceTime and iMessage not accepting Apple ID password
    http://www.ilounge.com/index.php/articles/comments/facetime-and-imessage-not-acc epting-apple-id-password/
    Fix Can’t Sign Into FaceTime or iMessage iOS 7
    http://ipadtutr.com/fix-login-facetime-imessage-ios-7/
    FaceTime, Game Center, Messages: Troubleshooting sign in issues
    http://support.apple.com/kb/TS3970
    Unable to use FaceTime and iMessage with my apple ID
    https://discussions.apple.com/thread/4649373?tstart=90
    iOS 7 allows you to block phone numbers or e-mail addresses from contacting you via the Phone, FaceTime, or Messages
    http://howto.cnet.com/8301-11310_39-57602643-285/you-can-block-people-from-conta cting-you-on-ios-7/
    How to Block Someone on FaceTime
    http://www.ehow.com/how_10033185_block-someone-facetime.html
    My Facetime Doesn't Ring
    https://discussions.apple.com/message/19087457#19087457
    How to watch FaceTime calls on the big screen with Apple TV
    http://www.imore.com/daily-tip-ios-5-airplay-mirroring-facetime
    Send an iMessage as a Text Message Instead with a Quick Tap & Hold
    http://osxdaily.com/2012/11/18/send-imessage-as-text-message/
    To send messages to non-Apple devices, check out the TextFree app https://itunes.apple.com/us/app/text-free-textfree-sms-real/id399355755?mt=8
    How to Send SMS from iPad
    http://www.iskysoft.com/apple-ipad/send-sms-from-ipad.html
    How to Receive SMS Messages on an iPad
    http://yourbusiness.azcentral.com/receive-sms-messages-ipad-16776.html
    Apps for Texting http://appadvice.com/appguides/show/apps-for-texting
    You can check the status of the FaceTime/iMessage servers at this link.
    http://www.apple.com/support/systemstatus/
     Cheers, Tom

Maybe you are looking for

  • How do I get my keyboard back in contacts on my iphone?

    How do I get my keyboard back in contacts on my iphone? It was working yesterday and not today.

  • PO amount Order Budget : PO is not blocked !

    Hi, I create an investment order (Tcode : KO01) and I assigned it a budget of 20.000 EUR (Tcode : KO22), then I create a PO assigned to this order (Tcode : ME21N), with 35.000 EUR as an amount. The problem is the system doesnu2019t block the PO despi

  • Chart will not plot points

    Hello, I am trying to make a chart from data I have collected for a biology project.  I have inserted all the data into the table and have selected it all and chosen a line graph to plot the data When the chart appears however, the only data that is

  • Fonts in flex/flash

    I posted this question over at actionscript.org but It might suit this forum more: I'm trying to create an application with AIR but there is one thing that keeps bugging me and its the vector based fonts, even though I select arial 12px font-weight n

  • Can i get my serial number from itunes without connecting my ipod?

    cani i get my serial number from itunes without connecting my ipod?