Setting a No Reply message rule in a “Send Outlook Mail Message” activity

hello,

is there a way to add some sort of code in the body or header (or somewhere else…) that will send out a message as a No Reply in outlook?

@Lior_Ben_Naim , can you elaborate this?

Cheers :slight_smile:

i want to send an email message “X” without the recipient being able to reply to this mail.
in addition, i want to still be able to get emails from other recipients regardless to the mentioned email “x” sent

No, not from official activity.

But ,Yes! that can be done by building a custom activity using dotnet. the steps can be found easily just need to code to get the desired action done in the background.

Hi

Hmm we can keep them in BCC right
So that you can still get the mail from others and not from those been mentioned
And as others said there is no such direct activity but may be in future
Till then we can make the process standard and include them in BCC or mention in the mail body itself to not reply

@Lior_Ben_Naim

do you familiar with the code needed?/

I would try on the system and let you know that.

Properties are mentioned in the microsoft docs too.

Also, got this below link that could help you. This creates a VBA and that can be run before you start performing the send Outlook email task.

Set OutlMail = OutlApp.CreateItem(0)

.Display
'.......
End With
outlapp.ActiveInspector.CurrentItem.Actions("Reply to All").Enabled = False 
outlapp.ActiveInspector.CurrentItem.Actions("Forward").Enabled = False

thank you
but this is for internal- It is not propagated to outside email addresses