question

andrejssobolevs avatar image
0 Votes"
andrejssobolevs asked JeffYang-MSFT commented

Outlook Rule - Have server reply using a specific message

Hello team!

I have a need from business - to be able to have 2 different Outlook Rules - "Have server reply using message". My problem is - when I make 2 different Outlook Rules with different server messages - after saving last rule - first rule text is overwritten and as result I have 2 Rules but both have same 'Server reply message text'.

Please assist, how to achieve saving 2 different versions of text in MS Outlook under Rules and Alerts where "Outlook Rule - Have server reply using a specific message"

Thanks a lot

office-outlook-itpro
· 1
5 |1600 characters needed characters left characters exceeded

Up to 10 attachments (including images) can be used with a maximum of 3.0 MiB each and 30.0 MiB total.

Hi @andrejssobolevs,
Just checking in to see if above information was helpful. If you have any further updates on this issue, please feel free to post back.

0 Votes 0 ·
JeffYang-MSFT avatar image
0 Votes"
JeffYang-MSFT answered JeffYang-MSFT commented

Hi @andrejssobolevs,

Before going further, could you please collect the build number of your Outlook via File > Office Account > About Outlook?
Does this overwritten issue only happen to one specific user? Or happen to all the users?

In order to conduct further researches about your issue, I tried the same tests with "Outlook Rule - Have server reply using a specific message" configured in my Outlook 2016 and Outlook 365:

  1. Create an Outlook Rule - Have server reply using a specific message, with emails from user A, reply using 123123.
    78672-15-20-12.jpg

  2. Send email to test this Outlook rule, can receive "123123" email message normally.

  3. Then, continue to add another similar rule, with emails from user B, reply using ABC.
    78618-15-20-44.jpg

  4. Sending emails from User A and User B to test.

As the test results displays, user A will receive email with "123123" and user B will receive email with "ABC". I even tried to set the same user A for both these rules, and the results shows that User A will receive two email messages back, "123123" and "ABC". So, seems I cannot reproduce your overwritten issue.
78649-15-33-07.jpg

If what I tested above is exactly your issue, please try the suggestions below to see if the issue still continues:
There could be some add-ins in your Outlook client that cause this issue, so it is suggested to start your Outlook in safe mode (Press Win + R, type “outlook /safe”, press Enter.) and see if the issue continues. And you could also try to remove these Outlook rules and re-create these rules in Outlook safe mode to see if it could work.

If your issue is different from my tests above, please try to provide me with more information related to your issue.

Any update, please feel free to post back.


If an Answer is helpful, please click "Accept Answer" and upvote it.
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.


15-20-12.jpg (6.2 KiB)
15-20-44.jpg (6.1 KiB)
15-33-07.jpg (7.8 KiB)
· 2
5 |1600 characters needed characters left characters exceeded

Up to 10 attachments (including images) can be used with a maximum of 3.0 MiB each and 30.0 MiB total.

Hi @JeffYang-MSFT ,

Message will be send to any incoming email, not as in Your example - to user A and separate user B. In this case text is overwritten.

79178-2021-03-18-outlook.png


0 Votes 0 ·

Hi @andrejssobolevs,

Thanks for your reply.

Yup, I'm using the exactly same Outlook version as you. So, we may first infer that it is not a version-related issue here.
Then, please forgive my confusion, seems I cannot understand the rules in your screenshots very well. I noticed that your both rules are similar(only with different names), so what kind of needs do you want to achieve? Maybe you could try sharing me with more specific information about what kind of operation you are trying so that I can do the same tests.

If you have any update about this issue, please feel free to post back.

1 Vote 1 ·
andrejssobolevs avatar image
0 Votes"
andrejssobolevs answered

Hi @JeffYang-MSFT ,

We have Shared Mailbox, where External customers sends in some data, regularly once per month.

Business needs to have Text 1 (with picture in that) to as server reply from dates 01-19 and Text 2 (with picture in that) in dates from 20-31 (EOM).
As you know, if OoO message there is not possible to add picture, only text. Therefore Server Reply is best option available.

At the moment I have scheduled task on exch server, which puts OoO message with text 1 on 01.date of month and text 2 on 20. date of month.

My target is to have 2 rules with 2 different texts, so that then I could use this PS1 script:


 $year=(Get-Date).year;
    
 $month = (get-date).month;
    
 $LastDayOfMonth = [DateTime]::DaysInMonth($year, (get-date).month);
    
 $day = (Get-Date).day;
        
    
 if ($day -gt 0  -and $day -le 19){
    
 Add-PSSnapin Microsoft.Exchange.Management.PowerShell.SnapIn;
    
 Get-InboxRule "20-31-dates" -Mailbox ourmailboxhere | Disable-InboxRule -Confirm
 Get-InboxRule "01-19-dates" -Mailbox ourmailboxhere | Enable-InboxRule -Confirm
    
     }else{
    
     Add-PSSnapin Microsoft.Exchange.Management.PowerShell.SnapIn;
    
 Get-InboxRule "01-19-dates" -Mailbox ourmailboxhere | Disable-InboxRule -Confirm
 Get-InboxRule "20-31-dates" -Mailbox ourmailboxhere | Enable-InboxRule -Confirm
    
 }
5 |1600 characters needed characters left characters exceeded

Up to 10 attachments (including images) can be used with a maximum of 3.0 MiB each and 30.0 MiB total.

JeffYang-MSFT avatar image
0 Votes"
JeffYang-MSFT answered

Hi @andrejssobolevs,

Thanks for your detailed reply here.

I tried lots of tests in my Outlook but still could not reproduce your issue, two rules with different text and images just work fine without any issue. Weird indeed.

By the way, as I know, except for the "Have server reply using a specific message" Rule, the "Reply using a specific template" Rule should also be able to meet your requirements. You can create two different .oft email templates for different text content and image.
81434-1.jpg
81428-2.jpg

Hope this can be helpful.


If an Answer is helpful, please click "Accept Answer" and upvote it.
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.


1.jpg (18.7 KiB)
2.jpg (37.5 KiB)
5 |1600 characters needed characters left characters exceeded

Up to 10 attachments (including images) can be used with a maximum of 3.0 MiB each and 30.0 MiB total.