1

I have a calendar set up where when a user creates a new event, an alert it sent to me so that I may Approve or Deny it. The problem is, I also would like to have an e-mail sent to the event creator that says if I approved or denied it. I've tried messing around with alerts more, but I feel like that's a dead end.

It probably can be done with workflows, but I don't quite understand how they work. Could someone explain?

Luke K
  • 173
  • 1
  • 2
  • 6

2 Answers2

0

Creating workflow:

  1. Open SharePoint designer 2013
  2. Open your site
  3. Go to Workflows
  4. Click 'List Workflow' on ribbon and select your list

  5. Add 'Send email' action

  6. The following block will be added to your workflow:

  7. Configure 'Send email' action to use assigned to field for determining recipient emails. Also define the body block for the letter. You can use different lookups there, for example inserting values from the item or item URL or whatever.

  8. Now go to 'Workflow Settings'

  9. Setup workflow to start whenever item is added or created

  10. Publish

  11. Enjoy :)

Find the detailed explanation in below link.

create an auto-generated email when items in a Sharepoint list are created

Note:-

  • Workflow steps are same for SharePoint 2016 as mentioned above.
  • Choose the calendar list in step 4.
Hardik
  • 7,733
  • 2
  • 18
  • 37
  • So this will send an e-mail as soon as I accept/deny the event? Or does it only send an e-mail when an event is added? – Luke K Jun 09 '16 at 18:20
  • It sends an email when new event is added to calendar. – Hardik Jun 09 '16 at 18:20
  • You had mentioned here that "I have a calendar set up where when a user creates a new event, an alert it sent to me". & It will work like the same. – Hardik Jun 09 '16 at 18:22
  • I already have an alert system in place for when new events are created. I'm looking for a way to send an e-mail when I accept or deny a newly created event. Is that possible with workflows? – Luke K Jun 09 '16 at 18:24
  • Yes you can create a condition on update an item that if status is accept or denied than you can send an email. – Hardik Jun 09 '16 at 18:28
  • Run the workflow on create (not update). You need to a wait for field to change action before the send email step, to wait until the status changes. – Erin L Jun 09 '16 at 18:43
  • What if I'm not using SharePoint designer? – Luke K Jun 09 '16 at 18:44
  • You need to use Visual Studio to create workflow. Here is the example of VS approval workflow....https://msdn.microsoft.com/en-us/library/office/dn456545.aspx – Hardik Jun 09 '16 at 18:47
  • Did you get it working for you? – Hardik Jun 09 '16 at 19:47
  • @Luke, Did you get it working? If you need further help than please let me know here.. – Hardik Jun 14 '16 at 15:54
0

You can use alerts, but the email will not be customizable. It will only be a notice that the status changed from "pending" to "approved" or "denied". Just add a column with the above 3 choices and with pending being the default. Create a view of the calendar with status not equal pending. Set alerts on this view for each of your contributors.

But I would also recommend looking at the OOTB approval workflow. https://support.office.com/en-us/article/All-about-Approval-workflows-60c865df-3f10-4aa2-8331-60b736a5e3d5

Jammin4CO
  • 1,427
  • 10
  • 24
  • What if I don't have a set list of contributors? I want to send the alert to the person who created the event that got accepted/denied, whoever that may be. – Luke K Jun 09 '16 at 18:52
  • Then the Approval Workflow is what you want. Or a custom workflow as Hardik suggested. – Jammin4CO Jun 09 '16 at 19:00