evergrean100
Technical User
I have a Form with 10 fields on it and I need to send an email with all 10 field values. The email output will look like this:
The form will pass the values to a Servlet which will call a JavaBean class that will get the values. I will also have to use the getMetaData method to get the field names?
The email (JavaMail located in an email helper class) part will be called in the Servelt to send the JavaBean values.
Is this the right direction?
Code:
First Name: Joe
Last Name: Smith
City: Dallas
State: Texas
....
The form will pass the values to a Servlet which will call a JavaBean class that will get the values. I will also have to use the getMetaData method to get the field names?
The email (JavaMail located in an email helper class) part will be called in the Servelt to send the JavaBean values.
Is this the right direction?