Forum Discussion

TomasG's avatar
TomasG
Brass Contributor
Dec 19, 2023
Solved

How to set automatic replies to emails for several users (or whole organization) in bulk?

Hi,  is possible to set automatic replies to recieved emails for several users in bulk? I can't find it anywhere in EAC.  I found the settings for single user. So my question is, is it possible t...
  • VasilMichev's avatar
    VasilMichev
    Dec 20, 2023
    One way would be to dump the email addresses in a CSV file, then use it as input for the Set-MailboxAutoReplyConfiguration cmdlet:

    Import-CSV blabla.csv | % { Set-MailboxAutoReplyConfiguration -Identity $_.EmailAddress -AutoReplyState Enabled -InternalMessage "I'm OOO bla bla" }

    where the CSV file has a column "EmailAddress" to identify each user. Don't forget to add the remaining parameters as needed, you can get details on each of them here:

Resources