Learning Solution - Need to send a reminder e-mail to all participants

I need to be able to send a reminder e-mail to all participants in a course.  I would like the e-mail to be sent to the participants 7 days prior to the start date of the course.
We currently use SMARTFORMS to send an e-mail to a participant when he is booked into a course.  We would like to send the same e-mail to the participant 7 days prior to the start of the course as a reminder. 
Would I accomplish this using a workflow?  Does anyone know a function that could be used to send the same e-mail again?  We have not been able to find the code to send the e-mail to the participant again.

Hii Karen,
We are also facing the same problem, but with the same i also want to know that how to send an e-mail to a participant when he is booked into a course coz for me its not working.
Could you please tell me the steps to follow.
Thanks & Regards,
Nidhi

Similar Messages

  • Need to send some notifications by mail (not all notif)

    Hi!
    We run workflow embeded into EBS (11.5.10.2 4RUP). We have a custom workflow that uses Role (WF_LOCAL_ROLES) connected to employee register (ORIG_SYSTEM = 'PER' and orig_system_id = (person_id in per_all_people_f). we get the Role in the db package that starts the workflow and set it to the attribute Recipient.
    I assume there are standard notifications (WF) that are sent to these roles. the roles have a notification_preference = 'SUMMARY' because the administrators/user do not want the system to send many e-mails but a summary e-mail and the user should check theis notif in Applications.
    But... an here is the but....our specifc custom workflow creates a notification that we would like to send as an e-mail. what can we do?
    The mails should be sent specific to users/employees induvidually. I mean the e-mail is specicif constructed per employee, so it is not a good idea to create a Role that connect many users or something. Can we create new roles specific per user/employee with notification_preference = 'MAILHTML' (or other mail pref)??
    Would this work without intefiering with the other role. I need help to understand this functionality and how to get this to work. Thank you in advance!
    Regards,
    Patricia

    Hi,
    The only way that I can think of to do this would be to create an ad-hoc user at runtime which has an email preference set to MAILHTML (or any other preference that sends an email), and an email address set to the email address of the recipient. This would then send an email to the employee, and when the emails have been sent then you can purge the ad hoc directory so that you don't end up with lots of obsolete roles in the database.
    The downside of this is that there is no way for anyone to see the notification from within eBS. Because it isn't sent to the employee, it would not appear in their worklist, which may or may not be acceptable to the business. One possible workaround would be to create another ad-hoc role, and asssign both the employee user and the ad-hoc user to the role, and expand the role on the notification so that multiple copies are sent (one to each member of the role). If the notification requires a response, then you need to write a post notification function to deal with the possibility of multiple responses, which makes the solution more complex still.
    HTH,
    Matt
    WorkflowFAQ.com - the ONLY independent resource for Oracle Workflow development
    Alpha review chapters from my book "Developing With Oracle Workflow" are available via my website http://www.workflowfaq.com
    Have you read the blog at http://thoughts.workflowfaq.com ?
    WorkflowFAQ support forum: http://forum.workflowfaq.com

  • I can no longer get my calendar to send a reminder e-mail for on a date in the future....alerts no problem

    I can no longer get my calendar to send a reminder e-mail for on a date in the future....alerts no problem

    Try turning the account off and on : Settings > Mail, Contacts, Calendars , then tap the account on the right, slide Mail to 'off', exit settings and go back into the Mail app, and then go back to Settings and slide Mail back to 'on'
    If that doesn't work then try closing the Mail app completely : from the home screen (i.e.not with the Mail app 'open' on-screen) double-click the home button to bring up the taskbar, then press and hold any of the apps on the taskbar for a couple of seconds or so until they start shaking, then press the '-' in the top left of the Mail app to close it, and touch any part of the screen above the taskbar so as to stop the shaking and close the taskbar.
    Also do a reset : press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider), after which the Apple logo should appear - you won't lose any content, it's the iPad equivalent of a reboot.

  • Need to send a link in mail using apex

    Hi,
    I need to send a mail using apex which will contain a link for a specific page. For sending mail , I used the following query:
    for c1 in (select EMAIL_ADDRESS
                 from USER_DETAILS
                where USER_NAME= :P4_USER_NAME and EMAIL_ADDRESS=:P4_EMAIL_ADDRESS) loop
      if c1.EMAIL_ADDRESS is not null then
        HTMLDB_MAIL.SEND(
          P_TO       =>  c1.EMAIL_ADDRESS,
          P_FROM     => '[email protected]',
          P_BODY     => 'Your new password is '|| 'xyzxyz',
          P_SUBJ     => 'Password detail' );
      end if;
    end loop;
    But how i will send the required link.
    Pls give some idea.
    Thanks,
    Chandra Bhanu

    Hi Chandra,
    Try this version of your code, you will alter the url to map to your apex server.
    DECLARE
       l_body   VARCHAR2 (4000);
    BEGIN
       FOR c1
          IN (SELECT email_address
                FROM user_details
               WHERE     user_name = :p4_user_name
                     AND email_address = :p4_email_address)
       LOOP
          IF c1.email_address IS NOT NULL
          THEN
             -- Include link to login page
             l_body :=
                   '<p>Your new password is '
                || 'xyzxyz'
                || '  To access the application and change your password, follow the '
                || 'link below.</p><p><a href="http://'
                || '</p><p><a href="http://edwprd:7777/pls/oitp/f?p=&APP_ID.:LOGIN</a></p>';
             apex_mail.send (p_to     => c1.email_address,
                             p_from   => '[email protected]',
                             p_body   => l_body,
                             p_subj   => 'Password detail');
          END IF;
       END LOOP;
    END;
    Jeff

  • Need to send two attachments in mail

    Hi
    I am using FM  to send attachments SO_DOCUMENT_SEND_API1
    But i need to send two different attachments with different data and structure .how to do this
    Please suggest

    Hai,
    Have a look at this code:
    *Body XLS
      DOC_DATA-obj_name  = 'XLS_File'.
      DOC_DATA-obj_descr = ' Sent: 2. Juli 10:12 AM '.
      CTEXT = 'Attached XLS File'.
      APPEND CTEXT.
      DESCRIBE TABLE CTEXT LINES tab_lines.
      READ TABLE CTEXT INDEX tab_lines.
      DOC_DATA-doc_size = 800 . "( tab_lines - 1 ) * 255 + STRLEN( CTEXT ).
      DOC_DATA-NO_CHANGE = 'X'.
      CLEAR PLIST-transf_bin.
      PLIST-head_start = 1.
      PLIST-head_num = 0.
      PLIST-body_start = 1.
      PLIST-body_num = tab_lines.
      PLIST-doc_type = 'RAW'.
      APPEND PLIST.
    *************************End of Body***********************************
    *Attachment XLS
      n = 1.                                    "for sending 1st attachment
      DESCRIBE TABLE gt_9bku LINES tab_lines.
      DESCRIBE TABLE gt_txtedit LINES tlines.
      PLIST-doc_size = 3200 . "( tab_lines - 1 ) * 255 + STRLEN( tlines ).
      PLIST-transf_bin = 'X'.
      PLIST-head_start = 1.
      PLIST-head_num = 1.
      PLIST-body_start = 1.
      PLIST-body_num = 50.
      PLIST-doc_type = 'XLS'.
      DOC_DATA-obj_name = 'XLS1'.
      DOC_DATA-NO_CHANGE = 'X'.
      PLIST-obj_descr = 'Anhang1'.
      APPEND PLIST.
    ********************END OF XLS ATTACHMENT******************************
    **Body DOC
      DOC_DATA-obj_name  = 'DOC_File'.
      DOC_DATA-obj_descr = ' Sent: 3. Juli 09:52 PM '.
      CTEXT = 'Attached DOC File'.
      APPEND CTEXT.
      DESCRIBE TABLE CTEXT LINES tab_lines.
      READ TABLE CTEXT INDEX tab_lines.
      DOC_DATA-doc_size = 5400 . "( tab_lines - 1 ) * 255 + STRLEN( CTEXT ).
      DOC_DATA-NO_CHANGE = 'X'.
      CLEAR PLIST-transf_bin.
      PLIST-head_start = 1.
      PLIST-head_num = 0.
      PLIST-body_start = 1.
      PLIST-body_num = tab_lines.
      PLIST-doc_type = 'RAW'.
      APPEND PLIST.
    **End of Body***********************************************************
    **Attachment DOC
      n = n + tab_lines.                                    "for sending 2nd attachment
      DESCRIBE TABLE gt_9bku LINES tab_lines.
      DESCRIBE TABLE gt_txtedit LINES tlines.
      PLIST-doc_size = 5400 . "( tab_lines - 1 ) * 255 + STRLEN( tlines ).
      PLIST-transf_bin = 'X'.
      PLIST-head_start = 1.
      PLIST-head_num = 1.
      PLIST-body_start = 1.
      PLIST-body_num = 50.
      PLIST-doc_type = 'DOC'.
      DOC_DATA-obj_name = 'DOC1'.
      DOC_DATA-NO_CHANGE = 'X'.
      PLIST-obj_descr = 'Anhang2'.
      APPEND PLIST.
    *********************END OF DOC ATTACHMENT******************************
    CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
      EXPORTING
        DOCUMENT_DATA                   = DOC_DATA
    *   PUT_IN_OUTBOX                    = 'X'
      IMPORTING
    *   SENT_TO_ALL                      = 'X'
       NEW_OBJECT_ID                    = OBJECT_ID
      TABLES
        PACKING_LIST                     = PLIST
       CONTENTS_BIN                     = objbin_final
       CONTENTS_TXT                     = CTEXT
        RECEIVERS                        = RECEIVER.
    Sorry that the code isn't properly alligned:(
    Best Regards,
    rama
    Edited by: newtoAbap on Jul 22, 2009 9:34 AM
    Edited by: newtoAbap on Jul 22, 2009 12:41 PM

  • In Elements 11 how do I get the verification code needed to send files as e-mail attachments ?

    In Elements 11 how do I get the verification code to send files as e-mail attachments ?

    I’ve found it usually works best with web mail via Adobe after obtaining verification. I know some email services block bulk email completely and I’ve only tested it with Gmail which works fine. Should also work with other web mail e.g. Yahoo and Hotmail. Give it a try. Before you start it will help to check your internet security settings. If they are set to High, reduce the settings to Medium temporarily. Then follow these instructions.
    1. Log in to your mail provider on the web and add the following email to your address/contacts book.
    [email protected]
    2. Open Organizer and on the menu click:
    Edit >> Preferences >> Sharing
    3. Choose Adobe Email Service from the client dropdown menu.
    4. Add your name and email address to the fields provided and click OK
    5. Test the system (first use only)  by selecting a photo in organizer and choosing Share >> Photo Mail then click Next (Mac users should use attachments)
    6. Choose a contact then click  Next
    7. Click Next Step, then click Next - the sender verification dialog will open.
    8. Check you have spelt your email address correctly and hit the Resend E-Mail button.
    9. Go to your inbox (also check spam) and when the Adobe mailer message is received copy (Ctrl+C) the long verification code.
    10. Return to the verification dialog and paste it (Ctrl+V) into the Sender verification field and click OK. Wait for validation confirmation then click OK to continue

  • How do I send a mass e-mail to all my contacts without showing all the addresses?

    How do I send an e-mail to all my contacts without everyone being able to see the individual addresses?

    Bcc   = blind cc

  • Messaging Plan needed to send photos via e-mail?

    I'm new to the mobile broadband community and would like to know if I can attach photos taken on my phone to an e-mail.  I have little interest in transmitting photos from my phone to other phones and I do not use text, so I am thinking I really don't need to get a messaging plan.  Right or wrong?

    Yes absolutely. You can always attach a photo via an E-mail just as you would on a computer. However, remember the size of the photos you are sending [i.e. File size!]. Sending a photo via E-mail will count towards your data cap whatever that may be on your plan. Photos, several of them, and just E-mail attachments in general can add up quickly so be sure to stay under your data limit to avoid extra fees.
    Happy E-mailing,
    --kwm1337

  • ICal: Changing the assigned calendar of an event sends out a new invite to all participants

    iCal version 5.0.3:
    I have multiple accounts set up (iCloud, shared, Exchange) in iCal.
    I've noticed that when I receive an invite that is assigned to the wrong calendar (e.g. to my icloud calendar) and I then change the assigned calendar to the Exchange calendar, iCal actually sends an invite to all the attendees with me as the organizer of the event!
    Instead of just changing the assigned calendar in my iCal, it creates a new invite on the new calendar from me to all the invitees.
    This seems to be new behaviour (bug) in version 5, as I can't remember this happening in earlier versions. It stopped being funny when it just did this with a company-wide HR event to all employees
    My default calendar is set to the Exchange account, but iCal seems to ignore that ever so often when adding new invites
    Any ideas on how to prevent this, or do i have to wait for an update to iCal?

    Hi Chris,
    Welcome to Apple Discussions.
    I often do the same thing (ie create an event in the wrong calendar). Are you aware that the assigned calendar appears in the info pane. You could simply select the correct calendar there, even reassign events.
    I understand the desire to do this with Quickeys, though I suspect very few people here use Quickeys. So if you don't get an answer here I'd suggest you consider the Quickeys forum: http://forum.cesoft.com/

  • How do I send an email in Mail to all my Contacts

    I am changing my email address, so would like to notify all my contacts at once. How to include all of them in one go? Appreciate your help.

    This really has nothing to do with the MacBook Pro hardware.  Please take your question to the forum for whatever vendor developed your email app.  If it's the Apple Mail app, go to the link below:
    https://discussions.apple.com/community/mac_os/mac_os_x_v10.7_lion

  • How to send a reminder maill at 3 months before retiring date?

    Dear all,
    if I need to send a reminder mail to the related HR administrator before 3 months of the employee's retire date, how should I do it?
    Should I write a batch program for it? 
    Thanks a lot for any suggestions!

    Hello Lucy
                   You can shedule this program for running every day at 12 o clock.it will not affect system performance.Check infotype 41date type - 42 last working day.(provided you are updating while hiring date type 42).
    Program Logic :
    1. Check infotype 41 date type 42.
    2.Check the difference in dates and months (system date and date type 42) using function module (HR_HK_DIFF_BT_2_DATES).
    3.If 3 months ,send a remainder mail.
    Hope this will help you for coding.
    Regards,
    Manoj.
    Message was edited by:
            manoj kumar

  • PMW (Payment Medium Workbench) and needs to send Payment Advises to Vendor

    Hi SAP Gurus,
    We are using PMW (Payment Medium Workbench) and our client needs to send Payment Advises through mail. After running F110 system should trigger mail to vendor for payment advise.
    We have created one DME format and it's working fine.  DME file is getting generated when we assign DME format to our payment method.
    we have also made the change for payment advice sending through email. Copy FM SAMPLE_PROCESS_00002040 to ZSAMPLE_PROCESS_00002040
    Go to transaction FIBF
    Settingsprocess modules of an SAP application
    Add a new entry for 00002040 FI-FI ZSAMPLE_PROCESS_00002040
    Make use of FM  ZSAMPLE_PROCESS_00002040  for adding vendor email address and make the payment medium.
    Now the problem is, we can not do this in one go, if we need to create DME file than we have to assign DME format to our payment method and if we have to send payment advice to our vendor than we need to use Payment Medium Program RFFOGB_T (standard program).  It's radio button and we can not choose both the program and Payment Medium Workbench.
    I need your valuable advice what need to be done in order to get DME file and payment advice send to vendor in one go.
    many thanks for your reply.
    regards,
    SATVIR SINGH

    Hi Stavir,
    Do you recall how were you able to resolve this issue?
    Thanks
    M

  • Sending Text File through Mail Adapter

    Hi Group,
    I need to send my Target as Mail attachment in the Text File?Can any body Suggest

    Hi swabap,
         You need to use PayloadSwapBean module in the Mail receiver adapter. This module will send the payload as an attchment to the mail server.
    Check the following link
    <a href="/people/prasad.ulagappan2/blog/2005/06/07/mail-adapter-scenarios-150-sap-exchange-infrastructure:///people/prasad.ulagappan2/blog/2005/06/07/mail-adapter-scenarios-150-sap-exchange-infrastructure
    Regards,
    Akshay

  • How to send emails to some mail ids in Pro*c program

    Hi all,
    I am using the pro*c code.I just need to send some messages through mail to some email id's.How can i achieve this?Can i get the source code for this?
    Thanks in advance!!!
    Ramya.

    Salut Yacson, et un accueil chaleureux dans les forums!
    Your question might get a better answer in one of the Server forums, like this one...
    http://discussions.apple.com/forum.jspa?forumID=711
    But might see these 3 for clues...
    http://discussions.apple.com/thread.jspa?messageID=6847070
    http://discussions.apple.com/thread.jspa?threadID=1430961
    http://discussions.apple.com/thread.jspa?threadID=2165968&tstart=30

  • Need Learning Solutions and Training and Event Configuaration Steps

    Hi Gurus,
    I need to configuare Learning Solutions Module. Please tell me Basic configuaration step for Learning Solutions and Training and Event Management.
    Thanks in Advance.
    Answers will be rewarded.
    Regards,
    Ram

    Thanks Kavya,
    I need one by on steps for the LSO Configuaration like.
    1) What all steps we need to configure in Training and Event Management
    2) What all steps we need to configure in Authoring Environment
    3) What all steps we need to configure in Content Management
    4) What all steps we need to configure in Portal.
    To implement  LSO ,  out of these four module which one we have to configure first.
    What kind of assistence we have to provide for Technical People.
    Please let me know.
    Thanks a lot once again for your support.
    Regards,
    Ram

Maybe you are looking for