Easier to just Type or C&P, unless you have tons of controls to addIs there a way to say for each control add the name to the array without listing them all out?
With a Collection...Check Control Properties and add the ones that match
For Each...
If Property = ??? Then
MyControls.Add
The Problem is that you want to involve two controls, a Label and a ???. Try adding the Label Caption to the ??? Control Tag. Then, to add to a Collection, you can...
If Len(???.Tag) > 0 Then Add
This again places your Email text in an arbitrary order.