<% 'Module: HTMLEmailTemplateLostPassword.inc 'Description: This include file contains the HTML template for the HTML message that is ' sent out to the customer when a password is lost and the user requests ' get their password and when HTML emails are selected. ' This file should be located in the wclanguage virtual directory so it is ' available for both Customer+Center and Tech+Center and Pocket+Center applications. '(C) 2000, 2001, 2002, 2003, 2004 Internet Software Sciences ' www.inet-sciences.com 'History: 'Date Who What '------- --- ------------------------------------------------ '10/1/04 SAV Created original HTMLEmailTemplateCustomerNotification.inc '03/24/05 SAV Created HTMLEmailTemplateLostPassword.inc from other file. %> <% Function CreateHTMLLostPassword(Username, password, Message, ToEmail) ' Get the Case Information if Case_number <> "NEW" TU = "" TU = TU & "" TU = TU & "" TU = TU & "" TU = TU & " Lost Password " TU = TU & "" TU = TU & "" TU = TU & "

" TU = TU & "

" TU = TU & "
" TU = TU & "
" TU = TU & " Lost Username / Password Recovery Information
" TU = TU & "
" ' Second Part of HTML Message ---------------------------- TU = TU & "" TU = TU & "" TU = TU & "
" TU = TU & "" TU = TU & "" & Message & "
" TU = TU & "


" ' Display username and password information TU = TU & "" TU = TU & "" TU = TU & "
" TU = TU & "
    " If Username = "" or IsNull(Username) then Username = "(Not Defined)" End If TU = TU & "Login Username: " & Username & "

    " TU = TU & "Login Email: " & ToEmail & "

    " TU = TU & "Password: " & Password & "

    " TU = TU & "
" TU = TU & "" TU = TU & "" CreateHTMLLostPassword = TU End Function %>