There is one as of Conda v3.8 though we haven't updated the documentation to reflect it yet (lots of new features in that release and we haven't gotten around to documenting them all yet).
There are two scripts to work with: activate and deactivate scripts. On OS X and Linux they go in the following directories:
$PREFIX/etc/conda/activate.d/anything.sh
$PREFIX/etc/conda/deactivate.d/anything.sh
Replace $PREFIX with the path to your environment. Any file with the extension ".sh" will be sourced, so you can use that execute commands, set environment variables, and so on. Best practice for environment variables (like those referenced in the blog post) is to add a counter deactivate.d script that calls `unset MY_VARIABLE` for each variable you set.
The same is available for Windows, except they're .bat files and they're executed.
Fun side fact, those files can be inside a conda package so if you have activation scripts that need to be shared across an entire team, you can add those files to a conda package and make it one of your requirements.