langchain_community.tools.office365.send_message
.SendMessageSchema¶
- class langchain_community.tools.office365.send_message.SendMessageSchema[source]¶
Bases:
BaseModel
Input for SendMessageTool.
Create a new model by parsing and validating input data from keyword arguments.
Raises ValidationError if the input data cannot be parsed to form a valid model.
- param bcc: Optional[List[str]] = None¶
The list of BCC recipients.
- param body: str [Required]¶
The message body to be sent.
- param cc: Optional[List[str]] = None¶
The list of CC recipients.
- param subject: str [Required]¶
The subject of the message.
- param to: List[str] [Required]¶
The list of recipients.