|
Hi, I am using webwiz forum and have sucessfully set up my forum etc on my virtual space. I must say that the software is absolutely awsume and I will be paying my contribution to webwiz in the near future not least to help keep the development team in jelly babys
I have a slight problem with the email authorization aspect of the forum. I have input the correct details in the SMTP servername, username and password and it does appear when a user registers that it is at least connecting to the SMTP server as the user receives a confirmation page saying that their account needs authorizing. Problem is I am not receiving the email on the address supplied telling me that I have a user to authorize. I have contacted my Host and they have confirmed that all is OK their end and the fact I am getting the confirmation page says that I am indeed connecting to the correct int mail server. I have taken the liberty in including their recommended code settings for the send mail function just incase there is something in the asp script that may be different for example the port used etc...
Code:
Dim MailMessage As New MailMessage With MailMessage .From = "email address" .To = txtSendTo.Text .Subject = "Subject Line Here" .Body = txtMessageBody.Text
.Fields("http://schemas.microsoft.com/cdo/configuration/smtpserver") = "intmail.atlas.pipex.net" .Fields("http://schemas.microsoft.com/cdo/configuration/smtpserverport") = 25 .Fields("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2
.Fields("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate") = 1 .Fields("http://schemas.microsoft.com/cdo/configuration/sendusername") = "Email user" .Fields("http://schemas.microsoft.com/cdo/configuration/sendpassword") = "email password" End With
Try SmtpMail.Send(MailMessage)
Catch ex As Exception End Try
The above is from their support section and hopefully will help?
Any help on this would be appreciated as we will be going live with the website this weekend.
Regards
Rob
|