Outlook Rule - Have server reply using a specific message

Andrejs Sobolevs 86 Reputation points
2021-03-16T17:12:20.933+00:00

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

Outlook Windows Classic Outlook for Windows For business
{count} votes

3 answers

Sort by: Most helpful
  1. JeffYang-MSFT 6,261 Reputation points Moderator
    2021-03-17T07:42:17.48+00:00

    Hi @Andrejs Sobolevs ,

    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.


  2. Andrejs Sobolevs 86 Reputation points
    2021-03-19T11:12:21.113+00:00

    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  
      
    }  
    
    0 comments No comments

  3. JeffYang-MSFT 6,261 Reputation points Moderator
    2021-03-25T07:48:59.203+00:00

    Hi @Andrejs Sobolevs ,

    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.

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.