hi, all
i have a xml file like.
now depending on the <DocType> the mail should be sent to the recepients. the data is reading from the xml file.
how to do it in c#.net.
plz help. its urgent.
thnx in advance.
neel
i have a xml file like.
Code:
<?xml version="1.0" encoding="utf-8" ?> <MailSettings> <FileType> <DocType>FFG</DocType> <Recipient>abc@gmail.com</Recipient> </FileType> <FileType> <DocType>FFG</DocType> <Recipient>def@yahoo.com</Recipient> </FileType> <FileType> <DocType>FFG</DocType> <Recipient>dcc@gmail.com</Recipient> </FileType> <FileType> <DocType>ATG</DocType> <Recipient>agg@yahoo.com</Recipient> </FileType> <FileType> <DocType>ARG</DocType> <Recipient>ard@abt.com</Recipient> </FileType> <FileType> <DocType>CCG</DocType> <Recipient>adw@awq.com</Recipient> </FileType> </MailSettings>
how to do it in c#.net.
plz help. its urgent.
thnx in advance.
neel
Comment