-
Notifications
You must be signed in to change notification settings - Fork 174
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create Rule “description-to-the-group/rule” (#7133)
* Create Rule “description-to-the-group/rule” * Update rules-to-better-email.md * Update rules/description-to-the-group/rule.md Co-authored-by: Gordon Beeming [SSW] <[email protected]> * Update Rule “description-to-the-group/rule” --------- Co-authored-by: Gordon Beeming [SSW] <[email protected]>
- Loading branch information
1 parent
c5acca7
commit eaa8eb0
Showing
5 changed files
with
62 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
--- | ||
type: rule | ||
title: "Do you add a description to the group? " | ||
uri: description-to-the-group | ||
authors: | ||
- title: Ash Anil | ||
url: https://ssw.com.au/people/ash-anil/ | ||
created: 2023-10-31T00:12:10.982Z | ||
guid: f5018832-3b25-4d29-8e33-a23972318949 | ||
--- | ||
Groups without descriptions lack context, making it difficult for users to understand their purpose. | ||
Members may not know why they are part of the group, leading to confusion and miscommunication. | ||
|
||
Descriptions for Office 365 Groups and Distribution Lists (DL) play a crucial role in enhancing communication, collaboration, and management within an organization. | ||
|
||
<!--endintro--> | ||
|
||
A group description provides valuable information about the purpose, scope, or membership of the group. It helps users understand the group's function and decide whether to join or interact with it. It's like a group's identity card! | ||
|
||
::: bad | ||
![Figure: Bad example - Group with no description ](bad-example-no-description.jpg) | ||
::: | ||
|
||
::: good | ||
![Figure: Good example - Group with description](good-example-with-description.jpg) | ||
::: | ||
|
||
#### Adding MailTips for Internal Groups | ||
|
||
A mail tip is a brief message that appears when someone adds the group to an email. It can provide additional instructions, warnings, or important information about the group. It is better to add the group description as a mail tip.\ | ||
This ensures that whenever someone adds a group to an email, they will see the description of the email as shown in the below figure. | ||
|
||
::: good | ||
![Figure: Good Example - Red Box shows the mail tip which is the group description](good-example-mail-tip.jpg) | ||
::: | ||
|
||
You can use PowerShell to add the mail tip to both distribution lists and Office 365 groups. | ||
|
||
> NOTE: MailTip maximum length is 175 characters. | ||
```powershell | ||
# Connect to Exchange Online | ||
Connect-ExchangeOnline | ||
# Add Group Name | ||
$Identity = "Distribution/office365 group name" | ||
# Set the mail tip for the group | ||
$Mailtip = "This group is a {{ NAME CLOSELY RELATED TO THE GROUP NAME }} group for {{ REASON FOR GROUP EXISTING }}. Goal: {{ WHAT IS THE GOAL/OBJECTIVE OF THE GROUP }}." | ||
# Add the mail tip to the distribution list | ||
set-distributiongroup "$Identity" -MailTip "$Mailtip" | ||
# Add the mail tip to the Office 365 group | ||
set-unifiedgroup "$Identity" -MailTip "$Mailtip" | ||
# Disconnect to Exchange Online | ||
Disconnect-ExchangeOnline | ||
``` |