Link to home
Start Free TrialLog in
Avatar of Mark Lewis
Mark Lewis

asked on

Frontpage forms submitting to a database and email

Currently I have a ticket system where the user submits their problem and the page just dumps that data to an Access database. Then the confirmation page uses this code to send our IT staff an email notifying them that a ticket has been submitted:
<%
dim msgbody
dim cdomail
set cdomail=createobject("cdonts.newmail")
cdomail.from="text"
cdomail.to="myusername@mycompany.com"
cdomail.subject="text"
cdomail.body="text"
cdomail.send
%>
While this seemed like a good idea, we all carry Blackberrys and it would be much nicer to have the information inputted in the form to come through the email that we are sent. Hence my question: Is there a way to make what I have work with added code or do I need to use a different method? Please keep in mind that I use FrontPage and the DRW to do my database transactions. I am by no means an html, asp or sql programmer. Thanks.
Avatar of sunithnair
sunithnair

Is this code not working for you now?
ASKER CERTIFIED SOLUTION
Avatar of aibusinesssolutions
aibusinesssolutions
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial