• Jon Jardine
  • NEWBIE
  • 0 Points
  • Member since 2022

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 1
    Questions
  • 2
    Replies
Hey, unfortunately at time of writing (October 2022) the email template editor (when you paste in HTML) still doesn't support XMLNS attributes in the HTML tag. This prevents Outlook from rendering emails correctly when sent from Salesforce as these attributes must be removed. Does anyone have a workaround or a solution to implement this? Pardot email templates accept these tags.
Hey, unfortunately at time of writing (October 2022) the email template editor (when you paste in HTML) still doesn't support XMLNS attributes in the HTML tag. This prevents Outlook from rendering emails correctly when sent from Salesforce as these attributes must be removed. Does anyone have a workaround or a solution to implement this? Pardot email templates accept these tags.
Is it possible to create or instantiate a class of a type the is equal to the value of a String?    So something along these lines;

//Normal code
private MynewClass MyNewClass;
MyNewClass = new myNewClass();

// Is something like this possible instead?
private MynewClass MyNewClass;
String tempString = 'MyNewClass';
MyNewClass = new tempString();  //  ie somehow get the value of tempString' as the type of class to create.

cheers
George