show / hide menu

Send Email ( Advanced with Example ) in SharePoint

Introduction

SendEmailAdvanced functionality in AppForms allows you to send an email along with\without attachments to as many receivers as u want. The SendEmailAdvanced has the additional options to add CC/Bcc.The receiver will receive that email as soon as the button is triggered.

Prerequisite: SMTP should be configured in SharePoint Central Admin.

Step 1: Select the Feature AppForms as shown in Figure 1.

Figure 1

Step 2:Create a New Folder and within that folder create a New Form.

Figure 2

Step 3: Open the form and drag the controls like ‘TextBox’, ‘Label’, ‘Rich Text Box’, ‘Button’ and ‘Border’ to design the form as shown in Figure 3.

Figure 3

Step 4: Rename the controls as per the necessity, so that the finalized form will look like the one below.

Figure 4: Designer
Figure 5: Preview

Step 5: Navigate to Rule tab and click ‘start’ to create a new rule and add an action.

Figure 6: Rule Tab

Step 6: Using ‘Expression builder’ generate the send email rule as per the below mentioned syntax and set a trigger to activate the rule.

Syntax:
SendEmailAdvanced (Subject, EmailBody, ToAddress, CcAddress, BccAddress, Fileupload)

Description

  1. Argument: Subject à Email subject
  2. Argument: EmailBody à Email Body
  3. Argument: ToAddress à to email address
  4. Argument: CcAddressà Carbon Copy email address
  5. Argument: BccAddressà Blank Carbon Copy email address
  6. Optional Argument Attachments à File attachment
Figure 7: Expression Builder

Example:
SendEmail(TextBox1.Value,TextBox2.Value,RichTextBox.Value,”Email Sent Successfully”,true)

OR

SendEmail(surya.claysys@gmail.com,”Form For Approval”,RichTextBox.Value,”Email Sent Successfully”,true)

Figure 8: Rule for SendEmail

Step 7: Once the rule is set, check the preview and thereby clicking “Send“ button, which is set as a trigger, the email is sent to the corresponding recipients.

Figure 10

Step 8: On checking the recipient’s inbox, the email can be viewed.

Figure 11

Send an Email with files that are uploaded to the File upload control

In the ‘Send an Email’ property, the email can be send by attaching multiple files with the mail and send to the corresponding recipients.

It can be achieved by adding\configuring a file upload control into the form.

Step 9: In the properties of the ‘File Upload’ control, click the checkbox of ‘Allow Multiple File’.

Figure 12

Step 10: The rule is set as shown in Figure 13

Example:
SendEmail(TextBox1.Value,TextBox2.Value,RichTextBox.Value,”Email Sent Successfully”,true,FileUpload)

Figure 13

Step 11: Check the ‘Preview’ and enter the values and upload the files into file upload control, as shown in figure below. And click ‘Send’.

Figure 14

Step 12: On checking the recipient’s inbox, the email can be viewed like the one below.