简体   繁体   中英

Protective marking on Outlook using excel email vba

I currently have a vba code sending outlook emails from excel. My problem is when I send outlook emails I require to select a protective marking which is always none. Is there a code I can use to always select this as none and not prompt me?

Thanks :)

Although rudimentary (and defeating the purpose), you could use VBA send-keys to circumvent the security prompt.

In my case, I am required press 'n' for 'none' then hit enter:

Application.SendKeys "n"
Debug.Print "key sent!"
Application.SendKeys "{ENTER}"
.Send

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM