<?xml version="1.0" encoding="UTF-8"?>
	<!--
		<form> container 'routing' value is "yes" is using an HTML form tag
			to determine recipient of the email
	-->
	<form routing="no">
	<!--
		<formField> (use for each form tag)
			'name' is the name of the HTML form tag
			<emailText> is the text to display in the email body
	-->
		<formField name="first_name">
			<emailText>First Name:  </emailText>
		</formField>
		<formField name="last_name">
			<emailText>Last Name:  </emailText>
		</formField>
		<formField name="business_name">
			<emailText>Business Name:  </emailText>
		</formField>
		<formField name="street_address">
			<emailText>Street Address:  </emailText>
		</formField>
		<formField name="city">
			<emailText>City:  </emailText>
		</formField>
		<formField name="state">
			<emailText>State:  </emailText>
		</formField>
		<formField name="zip">
			<emailText>Zip:  </emailText>
		</formField>
		<formField name="country">
			<emailText>Country:  </emailText>
		</formField>
		<formField name="email_address">
			<emailText>Email Address:  </emailText>
		</formField>
		<formField name="phone">
			<emailText>Phone:  </emailText>
		</formField>
		<formField name="do_not_contact">
			<emailText>Do Not Contact:  </emailText>
		</formField>
		<formField name="subscribe_to_mail_list">
			<emailText>Subscribe to Mail List:  </emailText>
		</formField>
		<formField name="comments">
			<emailText>Comments:  </emailText>
		</formField>
	<!--
		<routing> (use only when <form routing="yes">)
			'formNameTag' is the name of the form tag determining the routing
			<option> contains possible rout information
				<area> response value from the HTML form name tag specified by the 'formNameTag'
				<whoTo> email address to send to if the 'formNameTag' tag is equal to the <area> value.
		ex.
		<routing formNameTag="askingAbout">
			<option>
				<area></area>
				<whoTo></whoTo>
			</option>
	-->

	<!--
		<message> all nodes are required to send email
			<whoTo> is the default recipient email address(es)
			<whoFrom> is the reply email address, leave as no-reply@modot.mo.gov is not using
			<subject> is the subject for the email message
			<thankYouURL> is the URL of the thank you message to display
	-->
		<message>
			<whoTo>Allan.Zafft@modot.mo.gov</whoTo>
			<whoFrom>no-reply@modot.mo.gov</whoFrom>
			<subject>Future I-70 Contact Us Form Submission</subject>
			<thankYouURL>/kansascity/metroi70/thankyou.html</thankYouURL>
		</message>
	</form>

