04-19-2013 06:32 AM
Hi Guys, I'm looking for a way to send HTML based mails from SDK when a new opportunity created. I'm able to send text based mails without any problems but I need to send HTML mails. They are basically sort of a thank you mail but I need this functionality.
Thanks
04-23-2013 06:11 AM
What are you using to send the text-based e-mails?
04-23-2013 08:12 AM
Hi Len,
I'm using the
if (theApp.UIEmailManager.CanEmail() && theApp.UIEmailManager.IsSystemsSetup())
{
theApp.UIEmailManager.CreateEmailForContactList(theApp.ApplicationState.CurrentOpportunity.GetContacts(null));Act.Framework.Preferences.Enums.EmailCreateHistoryType.None,false, false, null);
}
method this is the only way I found here on the forum.
Thanks