I have a program designed to parse the fields from my form into a custom form template in outlook. The email needs to come in like this:
<root>
<exportblock>
<regtype>TEACHER</regtype>
<firstname>{firstname}</firstname>
<name>{name}</name>
<phone>{phone}</phone>
<mobile>{mobile}</mobile>
<emphone>{emphone}</emphone>
<email>{email}</email>
<street>{street}</street>
<city>{city}</city>
<state>{state}</state>
<county>{county}</county>
<referred>{referred}</referred>
<availmonth>{availmonth}</availmonth>
<availyear>{availyear}</availyear>
<destination>{destination}</destination>
<nation>{nation}</nation>
<birthday>{birthday}</birthday>
<ppexpire>{ppexpire}</ppexpire>
<univcollege>{univcollege}</univcollege>
<qualification>{qualification}</qualification>
<discipline>{discipline}</discipline>
<certification>{check0}</certification>
<teachinexperience>{teachinexperience}</teachinexperience>
<otherexperience>{otherexperience}</otherexperience>
<otherlanguage>{otherlanguage}</otherlanguage>
<history>{history}</history>
<btnResume>{btnResume}</btnResume>
<btnCoverLetter>{btnCoverLetter}</btnCoverLetter>
<btnPic>{btnPic}</btnPic>
<btnPassport>{btnPassport}</btnPassport>
<btnDegree>{btnDegree}</btnDegree>
<btnLessonPlan{btnLessonPlan}</btnLessonPlan>
</exportblock>
</root>
Is there a way I can get the email that generates to me to come in this format? Right now, when I set up the Email Template it strips the <> out which then won\'t allow the program to administer it properly.
<root>
<exportblock>
<regtype>TEACHER</regtype>
<firstname>{firstname}</firstname>
<name>{name}</name>
<phone>{phone}</phone>
<mobile>{mobile}</mobile>
<emphone>{emphone}</emphone>
<email>{email}</email>
<street>{street}</street>
<city>{city}</city>
<state>{state}</state>
<county>{county}</county>
<referred>{referred}</referred>
<availmonth>{availmonth}</availmonth>
<availyear>{availyear}</availyear>
<destination>{destination}</destination>
<nation>{nation}</nation>
<birthday>{birthday}</birthday>
<ppexpire>{ppexpire}</ppexpire>
<univcollege>{univcollege}</univcollege>
<qualification>{qualification}</qualification>
<discipline>{discipline}</discipline>
<certification>{check0}</certification>
<teachinexperience>{teachinexperience}</teachinexperience>
<otherexperience>{otherexperience}</otherexperience>
<otherlanguage>{otherlanguage}</otherlanguage>
<history>{history}</history>
<btnResume>{btnResume}</btnResume>
<btnCoverLetter>{btnCoverLetter}</btnCoverLetter>
<btnPic>{btnPic}</btnPic>
<btnPassport>{btnPassport}</btnPassport>
<btnDegree>{btnDegree}</btnDegree>
<btnLessonPlan{btnLessonPlan}</btnLessonPlan>
</exportblock>
</root>
Is there a way I can get the email that generates to me to come in this format? Right now, when I set up the Email Template it strips the <> out which then won\'t allow the program to administer it properly.