im trying to include code to a listing so when a costumer click on a button i created it sends a mail to us, if i include asp code to for example, viewcart.asp is going to work? i have this code
Code:
<% Set myMail=CreateObject("CDO.Message") myMail.Subject="Sending email with CDO" myMail.From="[email protected]" myMail.To="[email protected]" myMail.HTMLBody = "<h1>This is a message.</h1>" myMail.Send set myMail=nothing %>
Comment