|
evanesnard -> RE: Adding User to CDOSYS Email Notification (5/26/2006 16:48:18)
|
Oh, I forgot one more thing. Now that the whole function is working correctly, how do I change "user@domain.com" to the User's actual email address where there email address is recorded in x_Email DB column and that value is carried in the session? call sendEmail("me@mydomain.com","me@mydomain.com","Cancelled Ad",strText) call sendEmail ("me@mydomain.com","user@userdomain.com","Your Cancelled Ad",strText2)%> I tried this but it didn't work: call sendEmail("me@mydomain.com","Session("x_Email")","Your Cancelled Ad",strText2)%> I got: Internal Server Error The server encountered an internal error or misconfiguration and was unable to complete your request. Please contact the server administrator to inform of the time the error occurred and of anything you might have done that may have caused the error. More information about this error may be available in the server error log. Errr...Never mind. I got it now. I did not need the quotes around Session("x_Email") I now have the following and it's working great. call sendEmail("me@mydomain.com",Session("x_Email"),"Your Cancelled Ad",strText2)%> Thanks again
|
|
|
|