Sending Emails
Email notifications utility
There is nothing simpler than sending email notifications using SharePoint REST and Gosip Fluent API. However, when building workflow workers or custom subscription services email functionality is vital. And what can be better than embedded OOTB functionality? No extra knowledge of SMTP server and mail credentials, just a usual API call to _api/SP.Utilities.Utility.SendEmail
utility endpoint.
There are some limitations to this method:
recipients only from the site
impossibility to change the sender
no attachments
but as embedded solution it's OK. And probably sort of workflow notification service should stay in such margins anyways.
Sending email notification
Send email utility is not sophisticated but it works and enough for an embedded functionality.
Last updated