function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
jf317820jf317820 

Flex toolkit update for email templateId functionality

Any chance the flex toolkit will be updated to allow the templateId to be set for an email message?

Thanks in advance.
Ron HessRon Hess
this looks like it is available in the src:

    public class BaseEmail
    {
        public var bccSender:Boolean
        public var saveAsActivity:Boolean
        public var useSignature:Boolean;
        public var emailPriority:String; // Highest,High,Normal,Low,Lowest
        public var replyTo:String;
        public var subject:String;
        public var templateId:String;             // added in 11.0
        public var senderDisplayName:String;     // added in 11.0
       


is it not working?
i'm not positive this template ID has been tested, but the basic send email is tested by the test suite
jf317820jf317820
ehh...I tried with no luck, but let me double check.