Send email notification from outside of OIM

Hi,
I have a code which i am running out of OIM. The code does the following things:
1. Updates user's end date of the basis of end date given as input.
2. Send email notification once user's end date is updated.
I am able execute point 1 successfully-getting user's key, manager key, updating user's end date in usr table But I am facing issues while sending mail notification to user's manager. If anybody have worked on this type of scenario, then please let me know.
Thanks,
Kalpana.

Sending Text file as an attachment to email.

Similar Messages

  • How can i send email notification from UCM?

    Hi
    I am new to this technology. I need to send email notification to the user's, whenever file is checked-in. What is the procedure to send an email notification let us take GMAIL from UCM.
    1) Now I have installed UCM in my machine. Do I need to install any other software to implement this feature(sending email)?
    2) I read it in a document, that configuration is needed in a config file in order to send email. What details do i need to give in these fields,
    HttpServerAddress= ?
    MailServer= ?
    SysAdminAddress=?
    SmtpPort=25
    HttpRelativeWebRoot=/idc/
    CgiFileName=idcplg
    UseSSL=No
    WebProxyAdminServer=true
    3) Do I need to install any mail server? If so which software can i go with?? Is it possible to send email to gmail or yahoo acccount without installing mail server ???
    Regards
    Raj

    You will need to have an SMTP server of some sort that you can use. I think out of the box, you may only be able to use an SMTP server that allows anonymous sending or sending unauthenticated (e.g. an internal server). Any good SMTP server (that is not an internal server) would not allow this for security reasons.
    Thus, I think if you want to use an external SMTP server such as Gmail, you will need to write custom Java code. See this thread for more information: UCM SMTP server Configuration
    Jonathan
    http://jonathanhult.com

  • ICal keeps sending email notifications from all agenda items from the last 2 years. After laptop start up this action is repeated every hour. How can I stop these 300 emails coming in every hour?

    iCal keeps sending email notifications of all agenda items from the last 2 years (then I bought my laptop). After laptop start up this action is repeated every hour. How can I stop these >300 emails coming in every hour?

    Hi,
    We have rolled out a fix for this issue.
    Please log off and log back in to your machine and the issue should be resolved automatically. In case that does not work, please manually run the msi installer posted here (may require reboot).
    For details, please refer to the KB article here: Multiple RunOnce keys created 11.0.10 and 10.1.13 Acrobat | Reader
    Please let us know if you still face any issues.
    Thanks,
    Ashu Mittal

  • Sending email Notifications from BPM 11.1.1.5+FP

    Hi all,
    We're trying to send an email notifications from our process but we need to send HTML mails, not just plain text...
    Any help would be appreciated.
    Thanks in advance

    1. Configure the UMS Email Driver in Enterprise manager
    2. onfigure the SOA Suite Workflow Notification properties
    3. Restart the soa server
    4. On the BPM Process, drag the mail notification from the notification category.
    5. update the mail notification properties such as to address, title, and content etc.
    For the configuration, please refer the following url
    http://technology.amis.nl/blog/6019/configure-soa-suite-11g-for-sending-email-notifications-with-google-mail

  • Problem in sending Email notification from BPEL

    Hi,
    i am trying to send email from BPEL using Email activity.Using SoaSuite10.1.3.3
    i configured the ns_emails.xml file properly as below.
    when i run the process, it is executing fine without any error.
    but i am not receiving any mail.
    even i applied patch set p6148874 also.
    below pasted is the ns_emails.xml file.
    <EmailAccount>
    <Name>Default</Name>
    <GeneralSettings>
    <FromName>Oracle BPM</FromName>
    <FromAddress>[email protected]</FromAddress>
    </GeneralSettings>
    <OutgoingServerSettings>
    <SMTPHost>domain.com</SMTPHost>
              <SMTPPort>25</SMTPPort>          
    </OutgoingServerSettings>
    <IncomingServerSettings>
    <Server>domain.com</Server>
    <Port>110</Port>
    <Protocol>pop3</Protocol>
    <UserName>ckommalapati</UserName>
    <Password ns0:encrypted="false" xmlns:ns0="http://xmlns.oracle.com/ias/pcbpel/NotificationService">Chandu@1205</Password>
    <UseSSL>false</UseSSL>
    <Folder>Inbox</Folder>
    <PollingFrequency>1</PollingFrequency>
    <PostReadOperation>
    <MarkAsRead/>
    </PostReadOperation>
    </IncomingServerSettings>
    </EmailAccount>
    Even i tried adding <AuthenticationRequired> details to the above and its not working.
    i restarted the server after modifications.
    i tried pinging the SMTP server of my domain, and its connecting successfully.
    Could any one suggest me the solution for this problem.
    is there anything extra need to be configured for this..?
    Thanks in advance.

    Hi, ravigali :
    Following are some steps I take to set Email notification in BPEL:
    A important thing: get the right parameters of your Email server.
    Step:
    1. Alter ns_emails.xml (in D:\soft\SOASuite\product\10.1.3.1\OracleAS_1\bpel\system\services\config directory), an example is as following:
    <EmailAccounts xmlns="http://xmlns.oracle.com/ias/pcbpel/NotificationService"
    EmailMimeCharset=""
    NotificationMode="EMAIL">
    <EmailAccount>
    <Name>Default</Name>
    <GeneralSettings>
    <FromName>*Your Name*</FromName>
    <FromAddress>*Your Email: ***@***.com*</FromAddress>
    </GeneralSettings>
    <OutgoingServerSettings>
    <SMTPHost>*mail.***.com*</SMTPHost>
    <SMTPPort>25</SMTPPort>
    </OutgoingServerSettings>
    <IncomingServerSettings>
    <Server>*mail.***.com*</Server>
    <Port>993</Port>
    <Protocol>IMAP</Protocol>
    <UserName>***@***.com</UserName>
    <Password ns0:encrypted="false" xmlns:ns0="http://xmlns.oracle.com/ias/pcbpel/NotificationService">***</Password>
    <UseSSL>true</UseSSL>
    <Folder>Inbox</Folder>
    <PollingFrequency>1</PollingFrequency>
    <PostReadOperation>
    <MarkAsRead/>
    </PostReadOperation>
    </IncomingServerSettings>
    </EmailAccount>
    </EmailAccounts>
    Note: the detail explain of every XML element is in http://download.oracle.com/docs/cd/B31017_01/integrate.1013/b28982/service_config.htm#sthref324 (2.2.1 Configuring the E-mail Server)
    2. Add the following property to wf_config.xml (in D:\soft\SOASuite\product\10.1.3.1\OracleAS_1\bpel\system\services\config directory):
    <property name="oracle.bpel.services.notification.publisher_interval" value="1" />
    Then the BPEL server will send notification every 1 minute. More detail about this configuration to see http://download.oracle.com/docs/cd/B31017_01/integrate.1013/b28981/notif.htm#sthref1678 (14.2.1 Reliable Notification Service).
    3. Re-start all SOA Suite services. (opmnctl startall)
    After the BPEL process invoke any E-mail notification activity and if we can’t receive any E-mail notification, we need to check the BPELNOTIFICATION table (ORABPEL database schema). And delete any error data in this table, then correct the E-mail notification setting through above steps and re-start all SOA Suite services.
    Thanks,
    Melody

  • Send email notification from ASA

    Hello,
    I'm trying to send e-mail notifications from Cisco ASA when a vpn, session, config events have occurred. My config is:
    logging enable
    logging timestamp
    logging list email_notification level notifications class auth
    logging list email_notification level notifications class config
    logging list email_notification level notifications class session
    logging list email_notification message 713049
    logging list email_notification message 713050
    logging buffered informational
    logging asdm informational
    logging mail email_notification
    logging from-address [email protected]
    logging recipient-address [email protected] level notifications
    logging host Inside 10.10.XX.2 6/34003
    logging permit-hostdown
    but I'm receiving non expected message like:
    <162>Aug 09 2012 11:41:51: %ASA-2-106006: Deny inbound UDP from 10.10.107.79/50258 to 10.2.107.54/161 on interface Inside
    and I'm getting  my mailbox full with about 600 emails per 10 min.
    version:
    Cisco Adaptive Security Appliance Software Version 8.3(1)
    Device Manager Version 6.3(1)
    Compiled on Thu 04-Mar-10 16:56 by builders
    System image file is "disk0:/asa831-k8.bin"
    Config file at boot was "startup-config"
    FW-INT-01 up 107 days 10 hours
    failover cluster up 107 days 10 hours
    Hardware:   ASA5520, 2048 MB RAM, CPU Pentium 4 Celeron 2000 MHz
    Internal ATA Compact Flash, 256MB
    BIOS Flash M50FW016 @ 0xfff00000, 2048KB
    please help
    best regards,
    Alcides Miguel

    Hi Bro
    You could refer to this URL https://supportforums.cisco.com/message/3686071#3686071

  • How to send email notifications from a workflow?

    I am having problems trying to get notification emails to work from a workflow. I have done the following:
    1.Checked notification to file is commented out in waveset.properties
    2.Set SMTP server and port setting in Configure > Servers > email template
    3.Set SMTP and port setting in Account creation notification template.
    4.I am then running the following workflow code in reconsiliation per user workflow:
    <Action id='0' name='Send Notification' application='com.waveset.provision.WorkflowServices'>
                          <Argument name='op' value='notify'/>
                          <Argument name='template' value='Account Creation Notification'/>
                          <Argument name='type' value='email'/>
                          <Argument name='toAddress' value='$(email)'/>
               </Action>I am currently getting an error:com.waveset.util.WavesetException: toAddress must be specified.
    Whatever I try I cannot get the email template to pick up the email address for each user from the workflow.
    If I add a valid email address into the "toAddress" in the Account Creation Notification email template, the error goes away and reconsile completes, but no email is sent.
    Could someone advise what I can look into to sort this and get it working.

    You're running into a common IDM bug. I've hit it a few times too. I'm not sure of the root cause (sometimes using notifications as you did works for me sometimes it doesn't) but there's a workflow sub-process called "Notify" that you might look into. It's got a few extra features (such as retries) that the direct provisioning class does not.
    Call it using something like the following action:
          <Activity name='Notify User'>
            <Action id='0' name='send notification' process='Notify'>
              <Argument name='template' value=Template'/>
              <Argument name="from" value="[email protected]"/>
              <Argument name='to' value='$(userView.global.email)'/>
            </Action>
            <Transition to='end'/>
          </Activity>

  • Sending Email notifications in FCS withOUT being on Server OSX

    I'd like to send email notifications from FCS but I am NOT running the Server version of Snow Leopard. Anyone know how to serve SMTP without upgrading to the server OS?
    Thanks,
    Hans
    Hans Damkoehler
    VideoBloom, Inc.
    Senior Video Editor/Producer

    All you need to do is be able to send email to an SMTP server that doesn't require authentication. You configure the SMTP address of this server from within the Basic or Advanced Administration pane of Final Cut Server.

  • Sending email notifications in oim 11g approval flow dynamically

    Hi,
    I have 4 level approval workflow in oim 11g and developed custom composite to get all the approver ids and and assigning these ids into 4 variables.
    And used these variables in my custom 4 level sequential workflow. This workflow is working fine. Now I need to update this composite to send email notifications to the approver. So updated code to retrieve email ids and to store them in 4 more vairables. I cannot send all emails at a time thru the code. I need to send email only to the corresponding approver only when the flow reaches to that particular level.
    Subject and body will be same but the email address will vary.
    Can you please let me know the step by step process to implement notifications to these many levels.
    If you think, this is not correct approach (storing all email ids in variables and then sending notifications), please let me know correct approach.
    Thanks,
    Mary

    The way to do it would be to put your human task inside a while loop. This while loop would set a variable to the approver's userid and would continue till all the four approve it. In your human task you need just one approver and that would be the variable which the while loop sets.
    If you do it this way, then you can use the OOTB notification tab in the .task and select the 'Assignee' as the email notification receiver and you won't have to worry about getting the email ids as well.
    As for the current approach which you have, that is of using the sequential approvers in the human task, I haven't tried it, but just try setting the notification tab in the .task to 'Assignee' and event 'On Assignment'. That should do it as well.
    -Bikash

  • Sending email notifications to multiple IDs from lookup?

    Is it possible to send email notifications to multiple ids by putting them in the decode column of a lookup separated by semicolon or nay other identifier?
    OR is there any other way of sending email notfications to mutiple ids (not through Java mail) ?
    Thanks,
    Abhi

    Try this to fetch the emails ids from the Lookup.
    Suppose you have got a string say x from Lookup using "Lookup Definition.Lookup Code Information.Decode"
    String x = "[email protected];[email protected];[email protected]";
    StringTokenizer AA = new StringTokenizer(x.trim(), ";");
    while(AA.hasMoreTokens())
    int i = 0;
    while(i <= AA.countTokens())
    String B= AA.nextToken();
    AAList.add(B);
    i++;
    Now you have the list just make a for loop
    sendMail.setSubject("SUBJECT");
    sendMail.setBody("BODY";
    sendMail.setFromAddress(from);
    for (int i=0;i<emailList.size();i++){
    String email = AAList.get(i).toString();
    sendMail.sendEmail(email);
    If you need any help, let me know. I think we have written the whole code here. :-)

  • How to stop ical from sending email notifications for updates on my share ical calendar

    Is it possible stop ical from sending email notifications for updates I make on my share ical calendar?
    Mac OSX 10.7.2
    Very annoying for the person I am sharing my calendar with to get an email every time I change something.
    I hope there is a way to stop the emails, but for the updates to still go on their calendar.
    Thanks

    Great idea Lofty! thanks. If the person you are sharing a calendar with is a Yahoo Mail user, you only need to set up one filter (under Options - Mail Options - Filters) and route to Spam folder or a special folder for that purpose.
    Add a filter with the following parameters:
    Sender contains:    "Your First and Last Name" as it appears in the emails they are receiving
    Subject contains:  "Your First Name"
    Email body contains: "iCloud"
    Don't need to match case on anything. 
    So far, only these unwanted emails are being routed to the folder I chose.
    Hope that helps until Apple gets it's act together

  • Updating a SharePoint Calendar and sending email notifications based on information from an Access Web App

    Hi MSDN Forum,
    I have created an Access Web App that I am hoping to add some functionality to. I am looking to provide email notification to different users from my organization (a field within the Access Table) when the current date approaches the renewal date (another
    field within the Access Table). I would also like to display all renewal dates on a SharePoint Calendar for users to see. Any advice on how to do this would be much appreciated.
    Thanks!

    I'm not familiar with how Access Web Apps work. However, on the SharePoint side of things, it looks like a workflow will be your best bet. Are you using Visual Studio? I've created a few tutorials on sending email notifications in Visual Studio 2012. https://youtu.be/JFdiQEyDkEk

  • Send email notification after unlock account in OIM 11gr2

    Hi,
    there is OOTB email notification is availabe for sending email notification after unlock aacount.
    could anyone please provide a way to do that...

    any suggestion...

  • Is there a way to send an email notification from FormsCentral based on a specific response?

    For example, on my form I have a rating scale of 1-5.  I would like to set it so an email is sent only if the rating is a 1, 2, or 3.  Is that possible?

    We currently do not support that level of control for sending email notifications. If you think others are interested in this you should add an idea here: http://forums.adobe.com/community/formscentral?view=idea
    We use that to help us prioritize our work.
    Thanks,
    Randy

  • Email notification from Windows platform

    I am having four database (each on 9i) which are running on Windows NT server 2003, i want to send email notification for all the above four database, is there any utility to send email. please refer me any useful website regarding the same.
    Regards
    Jafar

    You can install perl and use perl modules to send email notifications Or if you know any smtp server configured in network you can use that also in your pl/sql code using dbms_smtp package to send emails notifications but its not good idea bcz monitoring should always be done from outside of the database.
    Daljit Singh

Maybe you are looking for

  • Question Mark where Safari icon should be

    I have a new macbook and love it so far, the only problem I've come across is a big one though, I have 3 accounts on my computer, all except for one of them (my account) the safari icon is now a big question mark (indicating that the file is corrupt

  • Time machine restore crashed system preferences

    Hi, just hoping someone can help with the following as my MacBook is not a happy bunny. I recently reformatted my hdd and restored my system using Time machine. This was to allow me to create a new partition so I could run bootcamp. All was fine for

  • TROUBLE WITH PDF'S!

    So I am having trouble with editing anything i save on a PDF. I recently saved a research paper in PDF format so it would be compatible at my school where there are microsoft only computers. I opened and realized I couldn't edit anything! I tried loo

  • Can't reinstall XP with Bootcamp 4.0.1

    I'm trying to reinstall Windows XP with Service Pack 3 on an '08 MacBook with OSX 10.7.2 and Bootcamp version 4.0.1.  My MacBook doesn't recognize that the Windows install disc in in the drive.  The disc and drive are both otherwise just fine.  Any t

  • Why can't I open my email messages in .Mac?

    I have to click on the message 2-3 times before it opens. In some cases I can read messages by only clicking once. Any suggestions? I'm using Mail 2.1.