I was testing my smtp directly and realized that my smtp was working fine. So i took a look at the code for the emailutility.vb and upon me changing the code where the To and from are listed, then it worked.
Below is the section I edited. I put an actual email address in the TO and FRom lines. Now the password reminder works but the newsletter still doesnt not work. Did anyone find that this code was set differently for their CSK?
'*********************************************************************
'
' SendEmail Method
'
' Sends a single email.
'
'*********************************************************************
Public Shared Sub SendEmail(from As String, [to] As String, subject As String, body As String, bodyFormat As MailFormat, smtpServer As String)
Dim message As New MailMessage()
message.From =
admin@yahoo.com message.To =
user@yahoo.com message.Subject = subject
message.Body = body
message.BodyFormat = bodyFormat
message.Fields.Add("
http://schemas.microsoft.com/cdo/configuration/smtpauthenticate", "1") 'basic authentication
message.Fields.Add("
http://schemas.microsoft.com/cdo/configuration/sendusername", "username") 'set your username here
message.Fields.Add("
http://schemas.microsoft.com/cdo/configuration/sendpassword", "password") 'set your password here
SmtpMail.SmtpServer = smtpServer
SmtpMail.Send(message)
End Sub 'SendEmail