Is it possible to create an Alert Template and then during a workflow when I subscribe a user to the alert set the template?
SPAlert spAlert = spWeb.Alerts.Add();
spAlert.AlertType = SPAlertType.List;
spAlert.AlertFrequency = SPAlertFrequency.Immediate;
spAlert.EventType = SPEventType.All;
spAlert.List = spList;
spAlert.User = spUser;
spAlert.Update();
What would I specify to select my custom template?
Thanks
Wes
1 Comments