06-29-04 12:29 AM
Do you still require assistance?
This posting is provided "AS IS" with no warranties, and confers no rights.
EBusiness Server Team
I've completed all of the other steps except this one for order confirmation
emails. However, the codebase I am using is Retail2002 (ASP.NET), not Retail
(ASP). What updates are needed to the code below for these emails to work?
Thanks,
Ryan
1.. Using a text editor, such as Notepad, open the retail site Global.asa
file. The file is usually located at C:\Inetpub\wwwroot\retail.
2.. After the call to Main at the end of the list of MessageManager
strings, add the following lines:
Dim oMessageManager
Set oMessageManager = Server.CreateObject(""Commerce.MessageManager"")
Call oMessageManager.AddLanguage(""usa"", &H0409)
Call oMessageManager.AddLanguage(""FRA"", &H040c)
Call oMessageManager.AddLanguage(""ENC"", &H1009)
oMessageManager.defaultLanguage = ""usa""
Call oMessageManager.AddMessage(""email_subject"", ""Order Confirmation"")
Call oMessageManager.AddMessage(""email_body"", ""Thank you for shopping at
our store. Your order is confirmed. "")
Call oMessageManager.AddMessage(""email_tracking"", ""Tracking number: "")
Call oMessageManager.AddMessage(""email_total"", ""Total purchase: "")
[ Post a follow-up to this message ]
|