I would like to send a message to my personal Apple ID from my personal Website? Is this possible?

I've been building websites for some time. I've started re-coding everything in HTML 5 using CSS3. I would like for my site to work for me in the best possible way.  I've got an iPad, iPhone & well just about every iDevice you can think of. I would like for my clients to message me directly from my website. I noticed all "imessages" are sent to an Apple ID (this is linked to my current email). I would like to setup my website so that people can imput data into a form & it sends to my Apple ID when they hit submit. Almost like a "mailto:AppleID" . I was also reading that each phone number can have up to 2 apple ID's associated with it. So I would like to make a new id for my website.(that way when i get messages from my website I can know theyre from my website.)  Then my personal Apple ID.
Has anyone created an API for this? I noticed the information is somewhat "hush" on iMessage development?
<form>
<input type="email" name="emailaddress" placeholder="[email protected]" required />
</form>
I know I can email and it's great and all. But I would like to get a text message because I like getting the notifications. I also like knowning that my website is producing leads. I think it'd be great to get your compnay involved with HTML development.
<input type="appleid" id="your ID here" />
I would like to use apple if possible to develop a user friendly API. This would be developed for website owners to link their Apple ID with their website.
Any help would be appreciated.
-Blake

Hi,
I have my Contact Testers page which has this HTML
(opening tag here) a href="aim:goim?screenname=ralphjohnsr&message= Hi+!,+I+came+from+your+website,+ralphjohnsuk." (closing tag here) (opening tag here) img align="right" alt="Webmaster iChat Online Status Indicator" border="0" src="http://big.oscar.aol.com/ralphjohnsr?on_url=http://www.ralphjohns.co.uk//images/ RalphOn.gif& off_url=http://www.ralphjohns.co.uk//images/RalphOff.gif" /(closing tag here)(oen tag)/a(close tag) 
I have added some linebreaks to make it fit the page here.
This is obviously done using a valid AIM login name and the a href ="aim:goim? will launch an AIM Client and Message me.
As you say you would create a New Apple ID then this would be iCloud and an AIM valid Name (keeping the Password to 16 characters or less).
I am not aware of an iMessage equivalent that would do this to a Phone or iPad or to the Messages Beta as an iMessage.
To be clear.
What this HTML does is launch an AIM client (App) on the computer or the person viewing my page and then start a chat with the IM included in the HTML.
To do that it queries the AIM servers as to whether I am On line or Line and show a pic relevant to that status.  (it does not stop Off Line IMs but I am set up for that.  It also does not say if I am Available or Away.)
Edit to get html to show (not sure how to work this Raw code thing which dispalyed in the Reply wysiwyg screen.
8:29 PM      Saturday; March 31, 2012
Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
  iMac 2.5Ghz 5i 2011 (Lion 10.7.3)
 G4/1GhzDual MDD (Leopard 10.5.8)
 MacBookPro 2Gb (Snow Leopard 10.6.8)
 Mac OS X (10.6.8),
"Limit the Logs to the Bits above Binary Images."  No, Seriously
Message was edited by: Ralph Johns (UK)
Message was edited by: Ralph Johns (UK)

Similar Messages

  • Hi , I would like to ask you about purchase item transfer to ipad from mac book Itunes, But This message will be notified on screen this ipad could not be synced because this computer is no longer authorized with that purchased item on this ipad.

    Hi ,
    I would like to ask you about purchase item transfer to ipad from mac book Itunes, But This message will be notified on screen
    "This ipad could not be synced because this computer is no longer authorized with that purchased item on this ipad"
              I did authorized in the store, but still did not transfer to the mac. Could you please to tell me what should I do it? Please let me know that as soon as possible.
    Regards,
    Thank you

    The iPad is fine.  But the computer you're syncing with needs to be authorised with the Apple ID that was used to buy the material on the iPad.  You do this by picking the 'Authorize' item from the menu in iTunes and entering the account name and password.

  • Would like to send 'admin' message to all user of a forms application...?

    Hello,
    We are in 10g, and I have a specific issue I would like to talk with you...
    I hope I will be clear... and that my termonology is not too bad !
    In unix, it's possible for an administrator to send a message to all Unix sessions..
    So, do you think it would be possible to do a similar functionality on a Forms application?.... so that an admin user could send a message to any user connected to the same form application...
    Thanks a lot for your contribution,
    Olivier

    That functionality is part of the operating system in Unix. I don't think Forms provides for anything like that, unless you set up a timer in each form and check a database value every minute or so. The network might provided for something like that but you would have to check with the network guru's about that.
    NumbNutz

  • I have not downloaded my free pages  yet but would like to send a messages via email know from the notes application but do not know how

    l have not down oaded pages it is being processed however I would like to type up a messages on notes and sent it via e-lmail  can I and how?

    Bottom right corner.

  • I have 2 emails accounts and would like to be able to have them both open at the same time. Is this possible?

    I have 2 emails accounts and would like to be able to have them both open in Firefox in different tabs and be able to access each one. Now what I have to do is open one account in Firefox and open the other account in Internet Explorer. I would like to just use Firefox, if possible. Can you help me?
    Thank you,
    Phyllis

    hi melansonp, these 2 emails accounts are from one webmail or from 2 differents ?

  • I would like to add a new card date field to my address Book Contacts. Is this possible? Thanks, Jeff

    Hi,
    I would like to add a new card date field to my Address Book Contacts. Is there any way to do this? I have a lot of contacts and it helps me remember who I talked to, if I had a new card date field in my contacts.
    Thank you,
    Jeff

    Hi,
    I found the applescript below from Michael Bach that works well.
    (* Find recently modified entries in the Address Book
    Input: a time interval (backwards from today) in the variable "daysBeforeToday"
    Output: a string on the clipboard, format: YYYY-MM-DD (tab) Name (return)
    ©2009, Michael Bach, <www.michaelbach.de> *)
    set daysBeforeToday to 7 -- <<<  change as desired or read from a dialog
    tell application "Address Book"
      copy (current date) - daysBeforeToday * 24 * minutes * 60 to referenceDate
      copy (every person whose (modification date > referenceDate)) to modifiedPersons
      set s to ""
      repeat with aPerson in modifiedPersons
        set d to ((modification date) of aPerson) -- now change to international format and forget the hours
        set dateString to (year of d as string) & "-" & (my twoDigits((month of d) as number)) & "-" & (my twoDigits(day of d) as string)
        set s to s & dateString & tab & (name of aPerson) & return
      end repeat
      set the clipboard to s --for pasting into other applications
      s -- to view immediately in the script editor
    end tell
    on twoDigits(aNumber) -- trivial utility for formatting
      if aNumber < 10 then return "0" & (aNumber as string)
      return (aNumber as string)
    end twoDigits
    I changed the modification date to creation date.
    Thanks for the replies.

  • I would like to add an arrow to my iMovie project to highlight a basketball player, is this possible?

    I am making a basketball highlight tape for my son and am wondering if you can add an arrow to a video clip in iMovie?  I have downloaded a number of clips from different games into the project library, have inserted transition titles, and I now want to highlight which player is my son in the series of clips.

    ... hm, hard to tell ...
    as mentioned on my site, this a workaround, officially not supported.
    (stumbled into that 'option' when noticing that the transparency of .png isn't changed)
    • you can apply only one arrow = pic-in-pic per clip.
    • on preview, iM often doesn't catch the trick, but on final export, it should work. without 'pause'.
    • you mentioned 'tape' - your source is miniDV? I tested that only with HDef material, .dv is internally handled different ... .maybe ... maybe this reasons the issues.
    sorry, EM, of being of no better help - my last iM project is more than a year ago, after using iMovie for about 10y I made the plunge to the Big Boy's Toy FCPX and Motion5 ... I can there apply as much arrows, circles and highilghts, even 'taped' to movin' objects, as I like (=me soccer-Dad) ....

  • TS2972 I would like to share my iTunes libraries with my Apple TV from both my iMac and Macbook Pro, but I use the same iTunes account on both devices. Is it possible to link my Apple TV to both devices at the same time?

    I recently purchased an Apple TV, and I currently have it linked to my iMac with my iTunes account. I also have a newer MacBook Pro that has some different iTunes media on it than my iMac does, but they share iTunes accounts. Is it possible to link both devices at the same time, have access to media on both computers, and use the same iTunes account on both computers?? It seems Apple TV will only link to one iTunes account per computer, but can access multiple computers if different iTunes accounts are activated on those computers.

    You can share multiple libraries with the Apple TV, they don't even need to use the same iTunes account. Just make sure that you use the same ID for homesharing on all devices.

  • Is there a way to get multiple email accounts on the front page of my Iphone?  Also I would like to have different sounds when I receive mail in the different accounts. Is this possible?

    Is there a way to get multiple email accounts on the front page of my iphone instead of just the generic mail icon?  Also is there a way to get a different alert sound for each email?

    No.
    You need to review this (WYSISWG):
    http://manuals.info.apple.com/en_US/iPhone_iOS4_User_Guide.pdf

  • HT1688 My phone is trying to send an email that it can't send. The message is in the Outbox. I would like to delete the message but as long as the message is trying to send it, I am unable to.  Is there any way to tell it to stop sending so that I can del

    My phone is trying to send an email that it can't send. The message is in the Outbox. I would like to delete the message but as long as the message is trying to send it, I am unable to.  Is there any way to tell it to stop sending so that I can delete it?

    Thanks - the only thing is for a long time it would not allow my to select Edit - I tried it but - what ever - this time it did - THANKS - Mark

  • I would like to send a text message to a cell phone when certain alarms occur.

    I would like to send a text message to a cell phone when certain alarms occur.
    I have read some of the other post which don't give a straight forward answer on how to accomplish this task.  Also the newest post on this topic is from 2005.  I'm sure things have changed since then.
    Please help me with a step by step solution.
    Thanks for your help!

    You may use U.C.ME-OPC to send text messages to any cell phone. You may use a cellular modem that is connects to a serial COM port. In addition you may send an email that will be received as an SMS or eamil. If you use a cellular modem you may also send commands (for example: change or query values) from your cell phone to Lookout through U.C.ME-OPC.
    U.C.ME-OPC connects to Lookout using OPC or DDE.  
    To learn more visit Control-See web site at www.controlsee.com .

  • HT6030 I would like to send an e-mail to a group of people I have the group created, but when I drag it to bcc or to it will not attach. can anymon help me with this?

    Help I would like to send an e-mail to a group of people,  I have the group created, but when I drag it to bcc or to- it will not attach. can anymon help me with this?

    In a new email message window start to type the name of the Group you have in Contacts/Address Book in the 'To' field - it should self-complete when it recognises the name.
    (Note: this only works with 'normal' Groups and not Smart 'Groups').

  • I have a recorded movie clip on my desk top that I would like to send by email...How do I do that

    I have recorded a movie clip on a flip camera and downloaded it to iPhoto.  I would like to send it by email to an acquaintance.  Since iPhoto does not permit emailing of movie clips I saved the clip to my desktop and attempted to attach it to an email message.  No good...?file too big?  email would not load and send. 

    I would like to send it by email to an acquaintance.  Since iPhoto does not permit emailing of movie clips I saved the clip to my desktop and attempted to attach it to an email message.  No good...?file too big?  email would not load and send.
    Most internet providers allow email attachments limited to about 20 MBs—a few less. In cases where the file size exceeds this limit, you basically have three options:
    1) Re-compress the file to a smaller size. This usually involves reducing the display size along with a reduction in the data rate which often translates to degradation of quality. (I.e., Reducing the total data rate by half will reduce the file size by half.)
    2) If both parties share an IM connection, the file can be sent directly from one party to the other.
    3) Upload the main data file to a server and email a reference, QTL, or URL of its location to the receiving party who can then access/download the file. For instance, most ISPs allocate a certain amount of storage space to each user account. Many might be sufficient for your needs. If you have a MobileMe account, your movie can be shared/posted directly from iPhoto. There are also a number of sites, both free and commercial, that allow the uploading or sharing of such files. Some, like YouTube, are oriented towards viewing modified versions of you file while others allow downloading of the original file as uploaded. I believe all require a formal membership (free or paid) which is a sticking point for many people.
    In short, there are many options available and you will probably need to research which might best serve your needs.

  • Hello, I have $15 credit on my itunes account and would like to send a gift (music) to my girlfriend, but everytime that I click on "send a gift" is asking me "a method of payment is required to buy an itunes gift". please help

    Hello, I have $15 credit on my itunes account and would like to send a gift (music) to my girlfriend, but everytime that I click on "send a gift" is asking me "a method of payment is required to buy an itunes gift". I want to use my credit, not my card. Please help

    You cannot use iTunes Gift Card Credit for Gifting.
    A Credit Card associated with your Account is required

  • I was on a free dictionary website and it asked me if it would like to send me push notifications and i allowed it but i don't want them anymore...how do i get rid of that? I'm using my macbook pro by the way

    I was on a free dictionary website and it asked me if it would like to send me push notifications and i allowed it but i don't want them anymore...how do i get rid of that? I'm using my macbook pro by the way

    Go to the site and look for an unsubscribe link. Or, contact the site and ask them to stop.

Maybe you are looking for