Validating Email Field

Hi
I am developing a form in which there is an email field which i have to enter in a textArea.
tell me how can i check whether the entered email id is valid or not.
Its urgent
Thanks in advance
Dhiraj

In case you are using JDK version prior to 1.4 you can use following function.
<pre>
* Validates the structure of the Email Address. This method covers most
* requirements of the RFC822 specification.
* @param strEmailAddress Email Address to be validated
* @return true if validation is successful, false otherwise
* @see RFC822
* @see * Online Email Validator
public static boolean isValidEmailAddress(String strEmailAddress)
          boolean bValid = true;
          // return false if strEmailAddress is either null or empty
          if (isNullorEmpty(strEmailAddress)) {
               return false;
          // calculate length of the email address
          int iLength = strEmailAddress.length();
          // get the first occurrence of @ char
          int iCharAtPosition = strEmailAddress.indexOf("@");
          // validation fails if @ character is not present
if (iCharAtPosition == -1) {
     bValid = false;
          // validation fails if @ character found is in the first or last position
else if ((iCharAtPosition == 0) || (iCharAtPosition == (iLength - 1))) {
     bValid = false;
          // validation fails if more than 1 @ character are present
else if (strEmailAddress.indexOf("@", iCharAtPosition + 1) > -1) {
bValid = false;
          else {
               // traverse thru all the characters in the given email address
     for (int i = 0; i < iLength; i++) {
          // get the character at the i position
     char c = strEmailAddress.charAt(i);
     if (c == '.') {
                         // validation fails if . character found is in the first or last position
          if ((i == 0) || (i == (iLength - 1))) {
          bValid = false;
          break;
     // . character cannot come before @ character
     else if (i == (iCharAtPosition-1)) {
          bValid = false;
          break;
     // all these are invalid characters
     else if ( c > '~' || c < '!' || c == '(' || c == ')' ||
     c == '<' || c == '>' || c == '[' || c == ']' ||
     c == ',' || c == ';' || c == ':' || c == '\\' ||
     c == '"') {
                         bValid = false;
     break;
          // return the validation flag          
return bValid;
</pre>

Similar Messages

  • Validating Emails fields in my Dialog Box

    Hi all, I want to validate emails in my dialog box. My field are automatically fill by an XML and I want to validate them. I am able to validate them when the user enter a new email but if the user do not enter a new email and hit "OK", there is no validation. Any idea? Thanks!
    var submitEmailTo = "[email protected]\rclient@somewherecom"
    var submitEmailFrom = "[email protected]"
    var patt = /^[a-zA-Z0-9_.+-]+@[a-zA-Z0-9-]+\.[a-zA-Z0-9-.]+$/g;
    var dialog1 = {
        submitEmailTo: "",
        submitEmailFrom: "",
        submitEmailMessage: "",
        initialize: function (dialog)
            dialog.load(
                "emto": submitEmailTo
            dialog.load(
                "emfr": submitEmailFrom
        commit: function (dialog)
            var results = dialog.store();
            this.submitEmailTo = results["emto"];
            this.submitEmailFrom = results["emfr"];
            this.submitEmailMessage = results["mess"];
        emto: function (dialog)
        var data = dialog.store(["emto"])
        emtoString = data["emto"]
        emtoArray = emtoString.split("\r")
        for (var i=0;i<emtoArray.length;i++)
            if (emtoArray[i].match(patt) == null)
                    app.alert("Le courriel \"" + emtoArray[i] + "\"ne semble pas valide.", 1, 0, "Validating");
        description:
            name: "Job Information", // Dialog box title
            align_children: "align_row",
            width: 400,
            height: 200,
            elements: [
                type: "cluster",
                name: "Email Information",
                align_children: "align_right",
                elements: [
                    type: "view",
                    align_children: "align_row",
                    elements: [
                        type: "static_text",
                        name: "From (CVSC): "
                        item_id: "emfr",
                        type: "edit_text",
                        alignment: "align_left",
                        width: 400,
                        height: 20
                    type: "view",
                    align_children: "align_row",
                    elements: [
                        type: "static_text",
                        name: "To: "
                        item_id: "emto",
                        type: "edit_text",
                        multiline: true,
                        alignment: "align_left",
                        width: 400,
                        height: 30
                    type: "view",
                    align_children: "align_row",
                    elements: [
                        type: "static_text",
                        name: "mess: "
                        item_id: "emto",
                        type: "edit_text",
                        multiline: true,
                        alignment: "align_left",
                        width: 400,
                        height: 70
                    alignment: "align_right",
                    type: "ok_cancel",
                    ok_name: "Ok",
                    cancel_name: "Cancel"
    app.execDialog(dialog1)
    this.info.submitEmailTo = dialog1.submitEmailTo
    this.info.submitEmailCC = dialog1.submitEmailCC
    this.info.submitEmailMessage = dialog1.submitEmailMessage

    Actually this code is  attached to a button action. When my form is opened at first, my fields are populated and all the extra information are send to custom metadata.
    The opearator here, will hit a button  and a big dialog box appear with all the job information. You see actually only the email cluster. The idea is to help the operator to  easily build an email with copy and paste. Sometime the emails fields will be filled automatically and sometime the operator will fill them.
    The reason I go through a dialog box is I don't want the client to see to much information and the email is sent by a another application.
    My first idea was to put a validation script on the "OK" button but it seems not possible to "cancel" this action.

  • Email field validation

    Please let me know the email field validation
    Regards,
    Pallavi

    I made an awesomely good email verification string:
    '^[[:alnum:]][[:alnum:]_\-\.]*@([[:alnum:]]([[:alnum:]\-]*[[:alnum:]])?\.)+[[:alpha:]]+$'Try to break it for me :)
    -UPDATE 1-
    '^[[:alnum:]]([[:alnum:]_\-\.]*[[:alnum:]])?@([[:alnum:]]([[:alnum:]\-]*[[:alnum:]])?\.)+[[:alpha:]]+$'Forgot the last character of the local part has to be alnum :)
    Argh, hyphens still break it in the local part.
    -UPDATE 2-
    '^[[:alnum:]]([-[:alnum:]_\.]*[[:alnum:]])?@([[:alnum:]]([-[:alnum:]]*[[:alnum:]])?\.)+[[:alpha:]]+$'Hah, apparently hyphens can't be escaped from...
    You have to put them at the start or end of the list.

  • Update address-dependent email field on save of BP

    We have a requirement to update the address-dependent email field from the address-independent email field upon saving a Business Partner.
    I've been working on the 'BUPA_ADDR_UPDATE' BADi but am having no luck with it so far. I have managed to retrieve the data in the address-independent email field using the 'BUPA_CENTRAL_GET_DETAIL' Function Module but as yet have not been able to do the update of the address-dependent email field.
    Can anyone offer any guidance please ?
    thanks,
    Malcolm.

    Hi Malcolm,
    Try using the BADI : ADDR_UPDATE.
    Email is a part of the address management, so you would need an address badi.
    BUPA_ADDR_UPDATE is a business partner badi and only has the address reference - such as address number, validity, move date, etc..it will not help in cases where you need to work with address fields such as city, country, email,etc.
    Another approach :
    Try writing your code in PARTNER_UPDATE badi. This is called after save of BP. So you can probably trigger another update on the BP's address from here..
    Hope this helps you.
    Cheers,
    Rishu.

  • "" does not appear to be a valid email address. Verify the address and try again.

    I am getting this error whenever I copy an email address from somewhere and paste it into the 'To' field.
    “” does not appear to be a valid email address. Verify the address and try again.
    Whattup with that?
    Only way to get around it seems to be either typing the whole address in (uh!) or clicking on the email address and letting Mail create the new message. Both are not the way I need to do things and it used to work perfectly in Snow Leopard, as would be expected for such a basic sort of command.

    I had the same problem with multiple adressess:
    I used the " ; "  as a seperator.
    The message was sent with no trouble at all as soon as I used the " , " (comma) instead.
    Hope this helps

  • How to Validate Email field & Other..

    Hi,
    1. I have a requirement in which I have to check that the texinput field i.e EMail field should have @ in it. If not then I need to throw exception.
    Can anybody tell me how to check @ from VO attribute.
    2. There is another text input field in which I have to check that the input value by user should not be less than 0 and greater than 15. -- Not solved Yet
    I will do these validation on submit button.
    Please help.
    Thanks in advance.
    Ajay
    Edited by: Ajay Sharma on Apr 29, 2009 6:07 AM
    Edited by: Ajay Sharma on Apr 29, 2009 8:28 PM
    Edited by: Ajay Sharma on Apr 29, 2009 8:29 PM

    Hi,
    I am trying with this...
    public boolean validateFormat(String Item)
    boolean isAlphanumeric = false;
    Number number = null;
    if(Item != null && !"".equals(Item))
    try
    number = new Number(Item);
    catch(SQLException sqlexception)
    {System.out.println("Error in conversion"); }
    if(( number < 0) && (number > 11))
    isAlphanumeric = true;
    return isAlphanumeric;
    But I am getting error while compiling
    Error(332,21): method <(oracle.jbo.domain.Number, int) not found in class exl.oracle.apps.per.eexit.server.EmployeeAMImpl
    Error(332,37): method >(oracle.jbo.domain.Number, int) not found in class exl.oracle.apps.per.eexit.server.EmployeeAMImpl
    Thanks
    Ajay

  • TS3988 my user name (email address) is no longer a valid email address.  How do I get around the verification stage or change my username to be my current email address?

    How can I change my user-name for ITunes?  My user name was my old work email address and is no longer valid. When I try to create an iCloud account, I am having trouble due to the fact that the username is not a good email address.

    How are you trying to do it ? You can change the rescue email address on your account by, from http://support.apple.com/kb/HT5312 :
    Navigate to appleid.apple.com using your web browser.
    Click "Manage your account"
    When prompted, sign in using your Apple ID and password.
    Click Password & Security
    You'll be asked to answer 2 of your 3 security questions before you can make any modifications. If you are unable to remember your answers, you can choose to send an email to your rescue email to reset your security questions.
    After you've validated your identity by correctly answering your security questions, click Edit to the right of your rescue email address.
    Once you've finished editing your rescue email address, click the Save button directly below the email field.
    You can then try using your current rescue email address as your primary email address - you may need to log out of that page and back in. Or you can then try changing the primary email address via the Store > View Account menu option on your computer's iTunes
    If you have an iPhone, iPad and/or iPod Touch you may then need to log out of your account on them by tapping on it in Settings > iTunes & App Store and log back in for the account to be 'refreshed' on it.

  • How to validate the valid email

    Hi all
    i have a creation page in that page email field is ther .while saving the transaction i need to check that email is a valid email or not
    how can we achieve this functionality
    Regards
    Sreekanth

    Please see this link
    Re: how to validate the email
    Thanks
    --Anil                                                                                                                                                                                                                               

  • FormToEmail is not validating the fields

    Hi all
    iam newto contact form n php downloaded FormToEmail.php from dreamweaverspot.
    The issue is email is working even if i submit blank form.
    my page link http://fagencomputers.com/contact.html.
    Can anyone help me how to validate the form using php?
    thanks in advance,
    naveen
    here is the php script
    <?php
    $my_email = "[email protected]";
    Enter the continue link to offer the user after the form is sent.  If you do not change this, your visitor will be given a continue link to your homepage.
    If you do change it, remove the "/" symbol below and replace with the name of the page to link to, eg: "mypage.htm" or "http://www.elsewhere.com/page.htm"
    $continue = "/";
    Step 3:
    Save this file (FormToEmail.php) and upload it together with your webpage containing the form to your webspace.  IMPORTANT - The file name is case sensitive!  You must save it exactly as it is named above!  Do not put this script in your cgi-bin directory (folder) it may not work from there.
    THAT'S IT, FINISHED!
    You do not need to make any changes below this line.
    $errors = array();
    // Remove $_COOKIE elements from $_REQUEST.
    if(count($_COOKIE)){foreach(array_keys($_COOKIE) as $value){unset($_REQUEST[$value]);}}
    // Check all fields for an email header.
    function recursive_array_check_header($element_value)
    global $set;
    if(!is_array($element_value)){if(preg_match("/(%0A|%0D|\n+|\r+)(content-type:|to:|cc:|bcc: )/i",$element_value)){$set = 1;}}
    else
    foreach($element_value as $value){if($set){break;} recursive_array_check_header($value);}
    recursive_array_check_header($_REQUEST);
    if($set){$errors[] = "You cannot send an email header";}
    unset($set);
    // Validate email field.
    if(isset($_REQUEST['email']) && !empty($_REQUEST['email']))
    if(preg_match("/(%0A|%0D|\n+|\r+|:)/i",$_REQUEST['email'])){$errors[] = "Email address may not contain a new line or a colon";}
    $_REQUEST['email'] = trim($_REQUEST['email']);
    if(substr_count($_REQUEST['email'],"@") != 1 || stristr($_REQUEST['email']," ")){$errors[] = "Email address is invalid";}else{$exploded_email = explode("@",$_REQUEST['email']);if(empty($exploded_email[0]) || strlen($exploded_email[0]) > 64 || empty($exploded_email[1])){$errors[] = "Email address is invalid";}else{if(substr_count($exploded_email[1],".") == 0){$errors[] = "Email address is invalid";}else{$exploded_domain = explode(".",$exploded_email[1]);if(in_array("",$exploded_domain)){$errors[] = "Email address is invalid";}else{foreach($exploded_domain as $value){if(strlen($value) > 63 || !preg_match('/^[a-z0-9-]+$/i',$value)){$errors[] = "Email address is invalid"; break;}}}}}}
    // Check referrer is from same site.
    if(!(isset($_SERVER['HTTP_REFERER']) && !empty($_SERVER['HTTP_REFERER']) && stristr($_SERVER['HTTP_REFERER'],$_SERVER['HTTP_HOST']))){$errors[] = "You must enable referrer logging to use the form";}
    // Check for a blank form.
    function recursive_array_check_blank($element_value)
    global $set;
    if(!is_array($element_value)){if(!empty($element_value)){$set = 1;}}
    else
    foreach($element_value as $value){if($set){break;} recursive_array_check_blank($value);}
    recursive_array_check_blank($_REQUEST);
    if(!$set){$errors[] = "You cannot send a blank form";}
    unset($set);
    // Display any errors and exit if errors exist.
    if(count($errors)){foreach($errors as $value){print "$value<br>";} exit;}
    if(!defined("PHP_EOL")){define("PHP_EOL", strtoupper(substr(PHP_OS,0,3) == "WIN") ? "\r\n" : "\n");}
    // Build message.
    function build_message($request_input){if(!isset($message_output)){$message_output ="";}if(!is_array($request_input)){$message_output = $request_input;}else{foreach($request_input as $key => $value){if(!empty($value)){if(!is_numeric($key)){$message_output .= str_replace("_"," ",ucfirst($key)).": ".build_message($value).PHP_EOL.PHP_EOL;}else{$message_output .= build_message($value).", ";}}}}return rtrim($message_output,", ");}
    $message = build_message($_REQUEST);
    $message = $message . PHP_EOL.PHP_EOL."-- ".PHP_EOL."";
    $message = stripslashes($message);
    $subject = "FormToEmail Comments";
    $headers = "From: " . $_REQUEST['email'];
    mail($my_email,$subject,$message,$headers);
    ?>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <html>
    <head>
    <title>Dreamweaver Tutorial - Contact Form</title>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    <style type="text/css">
    <!--
    .thanks {
        text-align:center;
        margin-right: auto;
        margin-left: auto;
        font-family: Geneva, Arial, Helvetica, sans-serif;
        font-size: 14px;
        color: #333333;
        width: 475px;
        margin-top: 290px;
        margin-bottom: 0px;
        border-top-style: none;
        border-right-style: none;
        border-bottom-style: none;
        border-left-style: none;
        font-weight: normal;
    body {
        background-image: url(../images/01-main-copy.jpg);
        background-repeat: no-repeat;
        background-position: center top;
        background-color: #B7E4F9;
    a:link {
        color: #0066CC;
        text-decoration: none;
    a:visited {
        text-decoration: none;
        color: #006699;
    a:hover {
        text-decoration: underline;
        color: #FF6600;
    a:active {
        text-decoration: none;
    .style3 {
        color: #0066CC;
        font-weight: bold;
    .logo {
        color: #0066CC;
        font-weight: bold;
        float: left;
    .text {
        float: right;
        padding-top: 20px;
        padding-right: 20px;
        padding-bottom: 20px;
        padding-left: 20px;
        font-weight: normal;
    -->
    </style>
    </head>
    <body text="#000000">
    <div class="thanks">
    <div class="logo"><b><a href="<?php print $continue; ?>"><img src="../images/logo.png" alt="fagen" width="216" height="86" border="0"></a><br>
    </div>
    <center>
    <div class="text">
    Thank you <?php print stripslashes($_REQUEST['name']); ?>
    <br>
    Your message has been sent
    <p class="style3"><a href="<?php print $continue; ?>"><strong>Click here to continue</strong></a></p>
    </div>
    </center>
    </div>
    </body>
    </html>

    Hi All,
    Thanks for reading my post,
    I found a very cool javascript called gen_validatorv4 to validate the formtoemail.php
    check this link.
    http://www.javascript-coder.com/html-form/form-validation.phtml
    thanks again
    naveen

  • Validating email address - please help?

    hi,
    i have registration form in jsf, and i have a field for an email address, i was wandering if anyone knows how to validate the email address, when this is submitted to a javabean, to make sure it is an actual valid email address and that both email addresses ( re-entered ) entered are the same.
    so what i really want is the javacode for the javabean that can validate the email address to make sure it is valid.
    any help is appreciated
    thanks.

    Here's how I did a Postal code validation:
    public void validatePostalCode(FacesContext context, UIComponent toValidate, java.lang.Object inputValue) throws
    ValidatorException {
    Pattern pattern;
    String expression = "\\D{1}\\d{1}\\D{1}\\d{1}\\D{1}\\d{1}"; // x9x9x9
    String value = null;
    try {
    value = inputValue.toString();
    pattern = Pattern.compile(expression);
    this.postalCodeValidationError = !pattern.matcher(value).matches();
    } catch (ClassCastException e) {
    throw new ValidatorException(
    new FacesMessage(
    "Validation Error: Value " +
    "cannot be converted to String.",
    null));
    if (this.postalCodeValidationError) {
    // Here you do what ever you want when the validation fails
    // Like generating an error in JSF ... see ValidatorException
    On your JSP page add "validator="#{yourBean.validatePostalCode}"" to your inputText tag.
    It would be a good idea to read on Java's regular expression stuff to fihure out the expression you need to pass to Pattern.compile(expression) in order to validate the email address.
    Hope this help. Cheers

  • Send email to Supervisor email field

    I have written a workflow in SPD 2013 that runs an approval process for vacation requests. A user requests vacation and once saved, an approval process is started. I want to email the user's supervisor and tell them they have a task in Sharepoint to complete.
    Once the vacation request is approved or denied, an email is sent to the requestor. The supervisor's email address is in a custom field in a staff directory. The summiter's email is a a standard email address field in the staff directory.
    The email to the submitter works fine. The supervisor never receives an email and if you view the workflow history in SharePoint, there is an error. "The email message cannot be sent. Make sure the email has a valid recipient."

    Hi jimburris,
    Please first check if there is a valid email address for the approvers. And if you are using system account as supervisor, try to use another common user.
    Thanks & Regards,
    Emir
    Emir Liu
    TechNet Community Support

  • TS3212 You must enter a valid email address while reviewing new account information

    I have just recently set up an iTunes account.  When I try to go to the iTunes store I am receiving message that I have not used this ID yet and must review my info.  When I go to review my info it keeps telling me I must enter a valid email address.  What gives here?  Have been trying to get in for 2 hours.  Ridiculous!

    the fiend wrote:
    I think that until that question is answered, we don't know.
    If you have been looking at these discussion pages for a while (even though you have only just created an ID for them), you would know that it's the question that needs to be asked.
    If you would have had the same problem as the original poster you would know that the question is valid. I have the sam problem and I know that there is no such valid email address that qualifies.
    If the (most obvious) answer to your question is yes, what is the contribution of your post to this topic? It would be nice to post the answer to both options. That is if you them.
    What you think is the possibility to try to fill the apple id field for two hours and not even by accident fill in a string that is a valid email address. Let me assure you that if someone tries to fill a field for two hours he will try everything that fits. Including an email address.
    Luckily I found a solution to this problem elsewhere although I don't know if it can be applied on a Windows machine. The solution I found was this:
    https://discussions.apple.com/thread/4356618?start=0&tstart=0

  • ATTENTION!! RECEIVED FRAUDULENT EMAIL PRETENDING TO BE APPLE!! I received an email informing of a purchase made on my account and telling me to change my password if did not purchase the item, which I had not. I have received valid emails from Apple

    ATTENTION!! RECEIVED FRAUDULENT EMAIL PRETENDING TO BE APPLE!! I received an email informing of a purchase made on my account and telling me to change my password if did not purchase the item, which I had not. I have received valid emails from Apple in the past asking letting me know a purchase had been made and asking if I had made the purchase, but the item listed has alway been a purchase that I had made. Since I had received similar emails in the past, I didn't think anything of it. Because I had not purchased the item listed, I immediately clicked on the link in order to change my password, which has been suggested in authentic emails i had received from Apple in the past. The site I was redirected to was exactly the same as the Apple site where you go to change your password. I entered my userID and password and it stated a verification email would be sent, if it was not sent click "resend email." When I did not receive an email, after about 10 seconds I went to the Apple site and followed the SAME EXACT step on pages that were IDENTICAL to the FRAUDULENT website I apparently had just been at. When I clicked "Send verification email," I DID receive an email within seconds, which had a special link that brought me to a page where I could change my password, which I did. I later compared a legitimate email to the FRAUDULENT email and I DID FIND A DIFFERENCE, BUT IT WAS ALMOST UNNOTICEABLE unless you were really, really looking.  I doubt it would be noticed by anyone if not comparing it closely to a real email. THE DIFFERENCE WAS AT THE BOTTOM OF THE AUTHENTIC EMAIL, THERE WERE THREE LINKS THAT COULD BE SELECTED - My Apple ID/Support/Privacy Policy. ON THE FRAUDULENT EMAIL THESE LINKS WERE NOT PRESENT!!! Just today I received an email from Apple stating my password had been changed today. I did not change my password today. When I changed after getting the fake email, I did not think about my SECURITY QUESTIONS!!! If you forget your Apple password, you are able to answer the security questions in place of your ID and you get a confirmation email. Even though I changed my password within a one minute when I did not get a confirmation email with a link to change my password right away and I went dierctly to Apple's site, apparently it was enough time to take all the information on my account - INCLUDING MY DEBIT CARD NUMBER, WHICH HAD BEEN REQUIRED WHEN I INITIALLY SET UP THE ACCOUNT!!! Today I received a call from VISA FRAUD PROTECTION asking about strange activity on my account and stating they were concerned and wanted to ensure I had used the account. I HAD NOT, AND ALL THE MONEY IN MY BANK ACCOUNT HAD BEEN STOLEN!!!!! I am writing this in hopes that many people will see it and NOT FALL VICTIM TO THIS SCAM. Please pay close attention to any emails you supposedly receive from Apple - If the links "MY APPLE ID/SUPPORT/PRIVACY POLICY," PLEASE DO NOT ASSUME IT IS AN AUTHENTIC EMAIL FROM APPLE. I suggest you immediately forward the email to apple, which I didn't do because this happened days ago. Nothing was taken from my money that was already on the Apple account, and nothing had been taken from my checking account. I guess I assumed there had been something wrong with the link in the email directing me to where I could change my password, plus I had gone to the valid Apple website and changed my password for real, and I guess I was thinking that changing my password would prevent someone from being able to acces my account info. PLEASE DO NOT FALL VICTIM TO THIS SCAM AS I DID!!!!

    No need for alarm. There are several folks a day posting like threads. Most folks know these phishing attempts for what they are and merely delete with prejudice.
    To the bottom line... if you wish - and I am sure Apple will take notice - you should FORWARD the email to [email protected] and delete.
    CCC

  • How do I get a password for an Apple ID not connected to a valid email account

    since upgrading ios 6.0, my updates are tied to an account I haven't used for a long time.  I tried to change the password, but if Apple is sending me the password change message it is going to an email account I no longer access.  It's a nuisance becasue I now have to delete and add all apps in the ID I have been using for a long time to get updates.

    You can call tech support at 1-800-APL-CARE, if you can verify your identity with info such as the credit card on file for your account, you product serial number, you might be able to talk to account security and have a password reset done by them. Once that is done, then you can edit your account and add a valid email address.

  • HT1349 how can I change an email for authorization, the email address we used years back, is no longer a valid email address

    how can I change an email for authorization, the email address we used years back, is no longer a valid email address

    SfromW wrote: ... how can I change an email for authorization, the email address we used years back, is no longer a valid email address
    How to change account here: http://support.apple.com/kb/PH1641
    If you need more help, start here: http://www.apple.com/support/itunes/
    SfromW wrote: ... we can't remember the password from the old email address (for authorization)...
    Help Retrieving and changing passwords here: http://support.apple.com/kb/HT1911
    If you need more help, from iTunes for Windows, click  iTunes > iTunes Store > Support
    SfromW wrote: ... apple should make it easier to transfer authorization authority....I would think anyways.
    You might want to rethink your thoughts about making transferring authority easier.  Making it too easy would certainly degrade your account's security.  If you still believe it should be easier, you can send feedback directly to Apple via http://www.apple.com/feedback/itunesapp.html
    You will not get a response, but you can be certain that the responsible Apple people will see your input for consideration in FaceTime product development.
    As a new user, please understand that you are NOT directly addressing Apple here.  For more info about Apple discussions, start here: http://discussions.apple.com/static/apple/tutorial/etiquette.html 
    Message was edited by: EZ Jim
    Mac OSX 10.7.4

Maybe you are looking for

  • Safari 7.0.2 hanging randomly on Mavericks

    Safari keeps hanging intermittently for absolutely no reason. Whenever it does it, the spinning beachball comes up, and Safari is completely unresponsive for 5-10 seconds, then it goes back to normal as if nothing happened. This started happening ran

  • Ora-06502 while calling oracle function

    I am using 9.2.0.4.0 database. I have vb.net application that uses oracle provider for .net to connect to database. I am calling Oracle function which returns varchar2 value back. when i execute cmd2.ExecuteNonQuery, I get ora-06502 error. CREATE OR

  • Pmount & safe removal of USB device

    I am new to Linux (still discovering Arch inside a VM for now) and lately I've been looking into working with USB devices. I found out about pmount, great tool, but I wanted a little more. So also as part of me trying to learn C as well, I decided to

  • Float, AUTO ROUNDS OFF

    float a = 9999999.9f System.out.println(String.valueOf(a)); (i.e., when the number of digits on left of decimal > 6) gives a rounded off result as: 1.0E7 HOW CAN WE AVOID ROUNDING OFF, & retaining the standard notation(not scientific)

  • Complex/Multi Query Template using template builder.

    Hi Everyone! I'm learning BI Publisher & Template Builder for word-07. I have completed tutorials that are based on single query or single XML data. is there any tutorial that demonstrate working with multiple queries OR XML data sets. Best Regards.