I have a custom form that takes the input, sends it to a webservice, which then creates a user and sends an e-mail to the new user.
However, the e-mail text will from time to time be changed. My question is, where should I store this text so that changes to it are stored permanently (so users don't have to change it every time they visit the form) while still allowing easy access to edit it (via SP)?
I though of simply using a list, but this is the only piece of text I need stored so it seemed a bit over the top.
Thanks