XmlElement updateRecipient = doc.CreateElement(\"UpdateRecipient\");
XmlElement email = doc.CreateElement(\"EMAIL\");
XmlElement listID =
The problem is that you are reusing the "column", "name", & "value" variables. You need to create new XmlElements for the 2nd set.
I don't know, but try doing it in the opposite order. That's what I've always done. Don't append updateRecipient to the root, until you're through with it.
Thought you could reuse an existing element over again but you can't..