I guess issue is with your concatination....I see an issue with following line of code...vEmail= Page1.SendFormTo.rawValue, Page1.RSM.rawValue, Page1.CST.rawValue;I would use following....to concatinate all the email address....vEmail= Page1.SendFormTo.rawValue + ", " + Page1.RSM.rawValue + ", " + P...