I\'m getting the above error on the ToList() line of the code below
if (emailReplyTo != null) { System.Collections.Generic.List replyto = ema
ToList() is an extension method. Maybe you're missing the
using System.Linq;