Hi,
i want to send an email in a struts-based application:
I have a SendMailForm form with "Subject" "To" and "Body" fields. Then I have a confirmation page where i display the mail again and the user has to validate. Finally I have a SendMailAction which is supposed to send the mail and then forward to a specific page.
Which is the best way to do the SendMailAction ? I supose i'll have to use JavaMail. Do you think i should write the code directly in the SendMailAction class or write in in other class which will be called by the SendMailAction ?
thanks for you help
i want to send an email in a struts-based application:
I have a SendMailForm form with "Subject" "To" and "Body" fields. Then I have a confirmation page where i display the mail again and the user has to validate. Finally I have a SendMailAction which is supposed to send the mail and then forward to a specific page.
Which is the best way to do the SendMailAction ? I supose i'll have to use JavaMail. Do you think i should write the code directly in the SendMailAction class or write in in other class which will be called by the SendMailAction ?
thanks for you help