mail problems
I got Gemini installed on a Windows 2003 server in our test environment and it is working fine.
However , when I install it on our production machine, the CPU utilization goes to 100% whenever I use the email features like Forgot password, Sendmail.aspx.
I check my SMTP configuration and everything looks fine. I even created a test page within the Gemini application to make sure my SMTP is working fine and it is indeed working fine with the following code.
public static void SendMail(string fromEmail, string toEmail, string subject, string body)
{
SmtpMail.SmtpServer = "127.0.0.1";
MailMessage message = new MailMessage();
message.From = fromEmail;
message.To = toEmail;
message.Subject = subject;
message.Body = body;
SmtpMail.Send(message);
}
This is how my smtp config looks like
<add key="SMTPServer" value="127.0.0.1" />
<add key="SMTPAuthentication" value="OFF" />
<add key="SMTPUserName" value="" />
<add key="SMTPPassword" value="" />
Elsewhere in these forums I see that some people were having problems with cdosys.dll but its already there on my machine in the C:\windows\system32 directory.
There are no warnings or errors in the Event Viewer and none in the Gemini System error either.
Any suggestions greatly appreciated. We need the app running in no time !!
Thanks in advance
|
NeedHelp
· 1 |
|
| Wednesday, October 11, 2006, 11:51:26 AM | |




