Lotus notes doesn’t send emails when published in local IIS server
Hi all,
I use Lotus notes to send emails in my ASP.NET and C# web application.
It sends emails when it’s in debug mode.
However, if I publish in my local IIS server, it does not send any emails.
Domino.NotesSession oNotesSession = null;
Domino.NotesDatabase oNotesDatabase = null;
Domino.NotesDocument oNotesDocument = null;
Domino.NotesDocument oNotesDocumentForOther = null;
object oItemValue = null;
bool flag = false;
try
{
String UserName = "";
try
{
oNotesSession = new Domino.NotesSession ();
}
}
I get the error in the above line:
{System.OutOfMemoryException: Retrieving the COM class factory for component with CLSID {29131539-2EED-1069-BF5D-00DD011186B7} failed due to the following error: 8007000e.
I am really confused.
Can anyone help me out?