The host does not support SSL connections
Posted: Tue Nov 23, 2021 2:58 am
Hello Team,
I need to insert data in EmailMessage table with built in method EmailMessages.Insert(object).
here is the sample code-
EmailMessage emailMessage = new EmailMessage();
emailMessage.PatNum = pat;
emailMessage.MsgDateTime = DateTime.Now;
emailMessage.SentOrReceived = EmailSentOrReceived.Sent;
emailMessage.FromAddress = fromMail;
emailMessage.ToAddress = tomail;
emailMessage.Subject = sub;
emailMessage.BodyText = msg;
EmailMessages.Insert(emailMessage);
when used with OpenDentBusiness 19.4.6 then it''s giving this error- The host does not support SSL connections and the data not inserted.
I need to insert data in EmailMessage table with built in method EmailMessages.Insert(object).
here is the sample code-
EmailMessage emailMessage = new EmailMessage();
emailMessage.PatNum = pat;
emailMessage.MsgDateTime = DateTime.Now;
emailMessage.SentOrReceived = EmailSentOrReceived.Sent;
emailMessage.FromAddress = fromMail;
emailMessage.ToAddress = tomail;
emailMessage.Subject = sub;
emailMessage.BodyText = msg;
EmailMessages.Insert(emailMessage);
when used with OpenDentBusiness 19.4.6 then it''s giving this error- The host does not support SSL connections and the data not inserted.