Hi @Kelly Hawke
You can do that using ScriptRunner for Jira. There is a feature called as Listeners where you can write a script to do something (like sending an email) based events.
Event: ProjectUpdatedEvent
This event will let you know if there is a change in the project then you can write a script to check if the change was in the name.
event.getProject().name
event.getOldProject().name
For sending custom email you can check the script here.
I hope it helps.
Ravi
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.