User registration email notice

I am trying to get this working in our user registration form in portal where user will only get an email when she is approved or denied by our USER admin team BUT not when he first register at PORTAl.
Right now user register himself on portal and he gets an email that his account is created. This new id comes in the PORTAL User notice tab where admin will approve or reject him.
What i am trying to achieve is stop that first email which goes when user get resgiter but receive only a final email when his account is approved or rejected.
I tried to change these property in config tool
==============================================================
As per the Link. I have set these value
ume.notification.selfreg_performed = FALSE
ume.notification.create_approval = TRUE
ume.notification.create_denied = TRUE
and
and on the portal page under TAB>SYSTEM ADMIN>SYSTEM CONFIG>UME
CONFIG?NOTIFICATION EMAIL these are all checked.
-Send E-Mail on Following Events:
Administrator creates new user (->user)
User requests new password (-> user)
Administrator changes password (-> user)
Administrator locks user account (-> user)
Administrator unlocks user account (-> user)
Administrator deletes user account (-> user)
Import function creates new user (-> user)
Import function updates user (-> user)
===============================================================================
But this totally stop the email from coming . Looking by the property name it looks like they should make this change happen but it not. Can some one suggest what else can be done to achieve this.

Hi,
Uncheck the UME property 'Administrator creates new user.'
Portal User Notice tab must be customized. Look for its code, and use javax.mail.internet.MimeMessage to send the final mail on click of accept or reject button.
Regards,
Atul

Similar Messages

  • Setup user registration/email confirmation/login/captcha ?

    I'd like to setup an application to allow users to submit poll questions and then vote yes/no.
    Is there a sample app available that shows how to setup a new user registration, email confirmation, and login, preferably using captchas (maybe using recaptcha.net) ?
    I'd like something similar to the average forum/blog registration.
    Thanks,
    David

    Hi Daveio,
    the online discussion forium (packaged applictaion) will suit your needs.
    it has user-registration and the possibility to do polls (among other functionalities).
    Leo

  • New user registration email verification

    We have a new requirement user registration , when a new user registers with us he has to fill out a simple form with email address username , password etc we save all this detail and a flag that his email verification is pending .Next our application has to verify he gave us right email address for that we send an email with a link, opening this link we update our database the flag as verified email address, something like posting to forums I have to confirm my subscription by replying to the email wicket forums sends , please suggest me is there anything available which I can use than doing all that stuff I mentioned above ?

    gimbal2 wrote:
    DrClap wrote:
    gimbal2 wrote:
    It has to work with an unknown database and update an unknown tableOkay, apparently I didn't read the problem description properly and still do not. I don't know where an unknown database comes into the picture.I was assuming that the user information, including the "verification pending" flag, would be stored in some kind of database. But yeah, I suppose it's possible the user information would be persisted in some other way. This just makes it more complicated to write a generalized system of the type the OP is looking for.Actually I meant that this was to be built into a known web application (or applications) and thus with known database(s); everything under personal control and thus no head aches at all. The only additional requirement I see is that it is to be used in multiple applications, but in that I say: reuse the trick, not the code.
    The code is boiler plate.
    JEE containers are much more generalized with more functionality.
    But the code isn't that difficult, by itself, but still isn't trivial. So as a stand alone library I doubt anyone would bother to create a framework.

  • User registration uses first name/second name as username instead of using the email address

    I am just building my website and noticed that when a user registers, the username is set to the first name/second name.
    BUT... using a different temporary BC site, I noticed that this was using the email address as the username.
    When the username is set to first name/second name (e.g. fredsmith), it is possible for 2 people with the name fred smith to register and have the same username
    How can I set the username to be the user's email address?

    How is your javascript skills?
    It is a matter of pre-populating the username field with the email the person typed out.

  • Send Email after user registration

    Hi i hope somebody can help me
    Using Dreamweaver CS3 and the ADDT, i created a user registration page using the ADDT wizard,
    TRouble is when i click submit, it comes up with an error relating to the sending of the Email:-
    "Developer Details:
    E-mail couldn't be sent. Error returned: Failed to connect to smtp.mail.yahoo.co.uk:25 [SMTP: Failed to connect socket: A non-blocking socket operation could not be completed immediately. (code: -1, response: )]. (EMAIL_FAILED)
    tNG Execution Trace - VIEW
    tNG_insert.executeTransaction
    STARTER.Trigger_Default_Starter
    tNG_insert.doTransaction
    BEFORE.Trigger_Default_FormValidation
    BEFORE.Trigger_Registration_CheckUniqueUsername
    BEFORE.Trigger_Registration_CheckPassword
    tNG_insert.prepareSQL
    tNG_insert.executeTransaction - execute sql
    tNG_insert.postExecuteSql
    AFTER.Trigger_Registration_AddDynamicFields
    AFTER.Trigger_WelcomeEmail*
    ERROR.Trigger_Default_Insert_RollBack
    tNG_insert.getRecordset
    tNG_insert.getFakeRsArr
    tNG_insert.getLocalRecordset
    tNG_insert.getFakeRecordset
    tNG_insert.getFakeRecordset"
    If i delete the Send_email trigger, then the registration is successful, however, without the Email confirmation (obviously).
    Any help would be gratefully recieved as its been driving me nuts for days now.

    Wayne,
    Are you running this code on a Yahoo store or just bouncing the emails thru the yahoo account?
    From what I read here(dated May 2, 2008):
    http://groups.yahoo.com/group/Commodore_Amiga_Retro/message/10924
    Yahoo has recently changed server names and/or ports. You might have to try plus.smtp.mail.yahoo.co.uk:465
    I've never used Yahoo to do this, so I'm no expert. Just found this googling a bit.
    From what I've read, it seems yahoo is mixing up the port numbers due to spam issues. You will need to contact Yahoo regarding which port to use if the above does not work.
    Shane

  • User registration

    I would like to do the following:
    1. User registers (this will create a user saved in a database table).
    2. A screen states that an email will be sent to him shortly asking him to activate the registration ID.
    3. An email is sent to the user's email address asking for him/her to click a hyperlink to activate his registration
    4. By clicking the hyperlink in the email, a process is performed which updates the database table that the user is activated
    5. The user can then continue with the application.
    I know how to do steps 1 through 3 bu how can I accomplish step 4?
    Thanks,
    Robert

    Hi,
    Could something like this work:
    Add to your user table registration id e.g. using sys_guid() and flag is registration confirmed.
    Create register confirm page e.g. 250 and hidden item to page P250_REGISTER_ID.
    Set page as public
    Then send link like
    http://yourserver:port/pls/apex/f?p=APP_ID:250:::NO::P250_REGISTER_ID:REG_ID
    Change APP_ID to be your application id and dynamically REG_ID to be what you did generated from sys_guid() for that user.
    Then create to page 250 after header process that check P250_REGISTER_ID and set registration confirmed flag to your user table.
    You can have e.g. 2 regions with info on page 250 and show those according check of P250_REGISTER_ID and if user has already confirm registration and so on ....
    This was shortly how it might be done/work. Hope it helps
    Br, Jari

  • IStore - B2B users registration by iStore administrator

    How can a iStore/CRM HTML administrator register new customer user/administrator?
    We are now in R12.
    In 11.5.9, via CRM HTML responsibility, we had to do the following steps in order to setup a new user account:
    1/ Find the organziation and create the contact
    2/ During contact creation process, there was a radio button to make the contact iStore user
    3/ Enter name, contact info, user name and password for the new user.
    4/ AFter the new user is created by CRM HTML Administrator, user receives email notification with username and password
    5/ When new user attempts to login to the store using the login credential from the email, user will be prompted change password page
    Do we have a similar functionality in R12?
    If not, what is the alternate solution? no customization please
    Just to be clear, basically we do not want the customers to have the ability to self-register. Therfore, sales organization would want to have complete control over the user registration.
    Appreciate your help on this.
    many thanks..

    Thanks

  • How to Create Internet user with email id as user id

    Hi All,
    I am having a requirement to create internet user taking email id as the user id, means the user id is same as the email id, to achieve this do I need to maintain some settins or is there any standard BAPI to do this.
    Is this a standard feature of CRM 2007.
    Thanks in advance,
    Mayank

    Hello Mayank,
    B2C Scenario has these options for the parameter usertype in the Application definition.
    In R/3 scenario: R3_SU05Customer_LoginEmail ISA R/3:This login configuration is the only one that is supported for ISA R/3 B2C. It cannot be chosen for the B2B and shopadmin applications. During B2C registration, SU05 users are created with type equals 'KNA1', referring to a newly created R/3 customer.
    -In CRM scenario:_ CRM_Standalone_LogonConsumer: Standard user management settings if Internet Sales is used as a standalone, the login is based on the e-mail address. The internet users must use the SU01 user concept. Consumer is the keyword here. The BP associated with the SU01 user is a Consumer.
    The B2C application is hard-wired the way it is defined above.
    Now for the B2B application
    In R/3 scenario: Only R/3 ISA provides some SU05 user possibilities. But they are not relevant to your situation
    In CRM scenario: it gives CRM Standalone or CRM Portal possibilities. In CRM Standalone, the login id uses Alias. But nothing stops you from using keeping Alias same as the User ID. In case of Portal, the login occurs via Portal. That is user log on to portal and gets into ISA using SSO. The portal offers varieties of ways to authenticate including email adress, user id etc. This is made possible by use of LDAP in portal for user authentication. They maintain a mapping between email-id and user-id and do what you are seeing now in SDN. If you have Portal in your landscape, and let external B2B users come through Portal into ISA with SSO, you can also do login using email-id in a jiffy.
    But in your case I think you are stuck with CRM Standalone
    Easwar Ram
    http://www.parxlns.com

  • Send an activation link to new user's email ID in webdynpro java

    Hi Experts,
    We have developed a custom Web Dynpro java application for the SAP user self registration.
    The user is being created successfully in UME db and we are also able to send an email to the user's registered Email ID.
    Now, as per the requirement we also want to send an activation link to the user's email id so that once the user clicks there then only the user ID gets activated
    Kindly let us know the steps involved so that we can achieve the functionality.
    Thanks And regards,
    Ghanshyam Agarwal.

    i think it's so general, nothing to do with sap
    1.lock the created user when creation
    2. create a table to store the newly created user
    3. create a servlet to receive the activation call
    4. remove user from the table and unlock user

  • Business catalyst user registration

    How does one setup (is it even possible) to set up two factor user registration in Business Catalyst.
    i.e. The users registers and is sent an email with a link to validate that the user is using a valid email address.

    Should not be the case.
    The Email is the primary identify, if you are using the proper email field and not a custom field BC will only add the form data to a single CRM entry. You wont find there are multiple customers in the CRM with the same email.
    A user can always fill in the same form, and new cases attached to them. There is no system email check on the field itself at this time. You just need to design how your site and registration flow works so people know not to keep registering.

  • Auto login after new user registration

    Hello,
    I would like to go directly to a restricted page (add session variables for username, level, etc) after a new user is registered, without first going to the login page. Is there a way to do this? I tried adding a login user behavior to my new user registration page, but it disabled the form validation on the page. I also tried copying some of the login page code (login transactions) into the new user registration page, but that didn't work either... any help would be greatly appreciated!
    Steve
    BTW, I am not utilizing email activation

    Well I finally figured out a work around... I am sure others will run into this problem and if someone can explain it to me I would be happy. But for now this will work.
    The above code that Steve U posted works for me exactly 50% of the time. It will work every other time, why I don't know. I even changed all of my temp and session directories in php configuration, changed from php5 to php4 and still no fix.
    Here is what I did to get it to work:
    On your registration form underneath the insert transaction you copy and paste the login transaction (that you generate on a login page).
    *Change tNG_login(this is your server connection)
    *Change the POST value to match your submit button on your registration form, mine is KT_Insert1.
    *Modify the redirect trigger to go to the page you want to redirect to after registration.
    *Change the kt_login_user and kt_login_password addColumn values to match the username and password fields in your registration form, mine are email_usr and password_usr
    *comment out the kt_login_rememberme addColumn (or if you need this, modify the code to allow for it in the registration form)
    I have now successfully registered a new account and had it auto-login to the user protected area 10 times in a row now, so this should be working.
    If you want some sample code here it is:
    // Make a login transaction instance
    $loginTransaction = new tNG_login($conn_connection);
    $tNGs->addTransaction($loginTransaction);
    // Register triggers
    $loginTransaction->registerTrigger("STARTER", "Trigger_Default_Starter", 1, "POST", "KT_Insert1");
    //$loginTransaction->registerTrigger("BEFORE", "Trigger_Default_FormValidation", 10, $formValidation);
    $loginTransaction->registerTrigger("END", "Trigger_Default_Redirect", 99, "user/confirmlogin.php");
    // Add columns
    $loginTransaction->addColumn("kt_login_user", "STRING_TYPE", "POST", "email_usr");
    $loginTransaction->addColumn("kt_login_password", "STRING_TYPE", "POST", "password_usr");
    //$loginTransaction->addColumn("kt_login_rememberme", "CHECKBOX_1_0_TYPE", "POST", "kt_login_rememberme", "0");
    // End of login transaction instance

  • User Registration Form

    Hi. I am trying to create a user regsitration form. I have used the User Registration Widget, tested the form, filled it in and and received my login activate account email. When I click on activate account I get an error - 'Error: Internal Error'
    Any ideas
    thanks in advance

    Thanks for the reply: Here is the error message. I see it says unknown column 'Active'. I don't understand why.
    Error:
    Internal error.
    Developer Details:
    tNG_update.getLocalRecordset:
    Error message:
    Unknown column 'active' in 'field list'
    SQL statement:
    SELECT active,id, id as kt_pk_lustrum_access FROM lustrum_access WHERE id =1 (UPD_RS)
    tNG Execution Trace - VIEW

  • User registration portlet

    Hi
    I want to develop a custom User registration portlet in JSP. I'm using iAS 902.
    Everybody can give me a starting point, or a sample.
    I developed Java API-s, which receives user information from LDAP, but I think my portlet must invoke Portal API-s, which registers the user to the Portal to.
    Any idee?
    Thanks.

    I had the same problem and wrote my own method to add users. I'm using the oracle.ldap.util.jndi.ConnectionUtil that is provided by Oracle. Everything seems to work pretty good. I'm winging it here so I'm always open to suggestions:
    import oracle.ldap.util.jndi.ConnectionUtil;
    import javax.naming.directory.*;
    import javax.naming.*;
    public class LdapUser
    public LdapUser(){}
    public void addUser()
    try
    InitialDirContext ctx = ConnectionUtil.getDefaultDirCtx("host", "port", "orcladmin", "pwd");
    BasicAttributes attrs = new BasicAttributes();
    BasicAttribute oc = new BasicAttribute("objectclass");
    oc.add("top");
    oc.add("person");
    oc.add("inetOrgPerson");
    oc.add("organizationalPerson");
    oc.add("orclUser");
    oc.add("orclUserV2");
    attrs.put(oc);
    BasicAttribute gn = new BasicAttribute("givenName", "TestX");
    attrs.put(gn);
    BasicAttribute sn = new BasicAttribute("sn", "Account");
    attrs.put(sn);
    BasicAttribute cn = new BasicAttribute("mail", "[email protected]");
    attrs.put(cn);
    // Etcetera, etcetera...
    ctx.createSubcontext("cn=testx,cn=users,dc=whatever,dc=com", attrs);
    ctx.close();
    System.out.println("Success!!");
    catch (NameAlreadyBoundException nabe)
    System.out.println("Username is already in use. Please choose another.");
    catch (NamingException ne)
    System.out.println("NamingException: " + ne);
    catch (Exception e)
    System.out.println("User account was not created.");
    }

  • Firefox is not handling Skype new user registration properly.

    When I attempt to register a new skype account (on skype.com) I get one of 2 responses. One is that it brings me back to an empty new user registration form, and the other is that it acts like it finished but the user is never actually created. This was duplicated on multiple Intel based mac laptops running 10.6.x on Firefox 4. New user registration works fine in Safari and Chrome on these machines.

    I also have this problem. I cannot open links from a discussion board I frequent nor can I open links from my email. Also after opening my email, I cannot go to any other sites except my home page. I can then go no where else.
    When I close Firefox and try to reopen it, it does nothing! I have to bring up the Task Manager and end the Firefox process before I can get back in.
    To the best of my knowledge, this problem started with the new update to Ver. 3.6.9. I am running Windows XP Media Center 2005

  • New User Registration page does not launch

    I am setting up a simple process to register a new user to my APEX application. At the login screen, the user can select "new user registration" button if they would like to register for a new id. Well, it was working for awhile and it stopped working sometime after I added the validations for the new registration fields. Now, whenever I launch the login screen and click on the "new user registration" nothing happens. If I bring up the "new user registration" page in the application builder, and click "run", it launches the login screen! I do have redirects back to the login screen in the event that the user clicks "cancel" or "register" on the "new user registration" page.
    This is very strange. Does anyone have any ideas as to the cause or how to track this down?
    Thanks,
    Reid

    I'll see if I can put the app on apex.oracle.com. I disabled the redirects and all of the not null validations I had. It's still behaving the way it did.
    In the meantime, I noticed this oddity. It seems like there is a mismatch between the URL page # and the actual page that is displayed. Here is what I mean. Here is the url:
    http://rilian:8080/apex/f?p=103:8:7659307535557230:::::
    See the page should be p=103:8. This is app 103, page 8, right?
    Well, that is the correct app and page. However, it displays app 103, page 101.
    When I click on the "new user registration" button, the url changes to this:
    http://rilian:8080/apex/f?p=103:8:7659307535557230::NO:8::
    And, I'm still on page 101, not page 8.
    Like I said before, this was working like a champ earlier this week and I went to show my wife how I had it working and boom it stopped. LOL. Murphy's law...
    Thanks again,
    Reid

Maybe you are looking for