I have some couple of events like when user subscribes to my newsletter it fires a subscribed event so that an e-mail will be sent to corresponding users to notify them about their subscriptions. But where should I handle those events ? What is the best practice to handle events ? Should I bind event handlers to events in Subscribe Button click event or should I use Global.Asax Application_Start event to begin listening my newsletter subscription events ?
Thanks.