Add-TaskEmailMessage

Prev Next

Summary

Creates a new task email message.

Add-TaskEmailMessage
    -Entry

Returns a task email message object.

Parameters

Parameter

Type

Required?

Notes

Entry

Task Email Message Object

Yes


Examples

Note

Creating and sending emails from Agility Blue requires that you first create an email message, associate recipient contacts to the email, link the email to an existing task, and then issue a command to send the email. See the task emails concepts article for a more detailed guide of this process.

Create a new task email message

$taskEmailMessage = @{
  TaskId = 29877 # put your task id in here
  EmailMessageId = 124 # put your email message id here
}

# Create the link
Add-TaskEmailMessage -Entry $taskEmailMessage | Out-Null