Home » Item #736
We're using the Persits ASPEmail object to send email. Our SMTP mailserver requires authentication (username and password) to successfully send email.
How can I set this up?
To do this you'll need to edit the email sending function.
Load up includes/functions.asp and find the line:
Case "persits", "aspemail"(this is line 525 in CactuShop v5.011). About 15 lines below that you should see this line:
Mail.SendAbove this, put in two new lines:
Mail.Username = "username"Obviously setting username and password to the authentication details.
Mail.Password = "password"