Forums
This topic is locked
Email Shopping Cart
Posted 25 Jun 2004 16:54:59
1
has voted
25 Jun 2004 16:54:59 Dimitris Kouris posted:
I am looking for an extension or script that can email the values of my shopping cart (Qty, product name, price etc) to an email address (preferably using recordset). Any tips / idea?
Thanx
Replies
Replied 26 Jun 2004 19:31:48
26 Jun 2004 19:31:48 Wim Conix replied:
Hi,
I think this will suit...
www.dmxzone.com/ShowDetail.asp?NewsId=5578
SmartMailer from DMXZone, which you can order on this site.
I use it for sending personalized mail to all users of my site, so I think this is what you are looking for.
Wim
I think this will suit...
www.dmxzone.com/ShowDetail.asp?NewsId=5578
SmartMailer from DMXZone, which you can order on this site.
I use it for sending personalized mail to all users of my site, so I think this is what you are looking for.
Wim
Replied 07 Jul 2004 05:12:17
07 Jul 2004 05:12:17 Aron K replied:
you could also save your self $99 and just use the basic ASP mail script.
I think this may do it
<pre id=code><font face=courier size=2 id=code>
<%
Set Mailer = Server.CreateObject("SMTPsvg.Mailer"
Mailer.FromName = "asdasasd"
Mailer.FromAddress= " "
Mailer.RemoteHost = "mail.sduswebpro.com"
Mailer.AddRecipient "aron", " "
Mailer.Subject = "Form uswebpro"
strMsgHeader = "Form information follows" & vbCrLf
for each qryItem in Request.Form
strMsgInfo = strMsgInfo & qryItem & " - " & request.Form(qryItem) & vbCrLf
next
strMsgFooter = vbCrLf & "End of form information"
Mailer.BodyText = strMsgHeader & strMsgInfo & strMsgFooter
if Mailer.SendMail then
Response.Write "Form information submitted..."
else
Response.Write "Mail send failure. Error was " & Mailer.Response
end if
%></font id=code></pre id=code>
-- Aron Kansal
1.401.368.3800 (Voice)
1.801.217.1704 (fax)
I think this may do it
<pre id=code><font face=courier size=2 id=code>
<%
Set Mailer = Server.CreateObject("SMTPsvg.Mailer"
Mailer.FromName = "asdasasd"
Mailer.FromAddress= " "
Mailer.RemoteHost = "mail.sduswebpro.com"
Mailer.AddRecipient "aron", " "
Mailer.Subject = "Form uswebpro"
strMsgHeader = "Form information follows" & vbCrLf
for each qryItem in Request.Form
strMsgInfo = strMsgInfo & qryItem & " - " & request.Form(qryItem) & vbCrLf
next
strMsgFooter = vbCrLf & "End of form information"
Mailer.BodyText = strMsgHeader & strMsgInfo & strMsgFooter
if Mailer.SendMail then
Response.Write "Form information submitted..."
else
Response.Write "Mail send failure. Error was " & Mailer.Response
end if
%></font id=code></pre id=code>
-- Aron Kansal
1.401.368.3800 (Voice)
1.801.217.1704 (fax)