Add ScriptedEmails from Installable Plugin

I am trying to add some default scripted emails from an installable plugin much like I have done with a default widget provider.  Is there an example of how to do this somewhere?

Creating a matching default script implementation

Create the following file in the CFS path using the ScriptedEmailId: /filestorage/defaultemail/efed29fae94e41f4b36d74f9f1df29a0.xml. This defines the default implementation of the email script which can be customized, published, or reverted within Email Studio .

  • I got it to work by looping through my assembly's embedded resources and writing the corresponding xml files into the "defaultemail" CFS location on the Install method.  This was based on some old default widget provider code I found on here for previous versions, so hoping it still is ok.

                #region Install Default Emails
    
    
                foreach (string resourceName in assembly.GetManifestResourceNames())
                {
                    string[] path = resourceName.Substring(assemblyNameLength).Split('.');
                    if (path[1].ToLower().Equals("defaultemails"))
                    {
    
                        Guid instanceId = getGuidFromResourceString(path[2]);
    
                        if (string.Compare(path[path.Length - 1], "xml", true) == 0)
                        {
                            string filename = string.Join(".", path.ToList().GetRange(2, path.Length - 2));
                            CentralizedFileStorage.GetFileStore("defaultemail").AddFile("", filename, assembly.GetManifestResourceStream(resourceName), false);
                        }
    
                        else if (path.Length > 3 && instanceId != Guid.Empty && (string.Compare(path[4], "xml", true) != 0 || path.Length > 4))
                        {
                            //string filename = string.Join(".", path.ToList().GetRange(3, path.Length - 3));
                            //FactoryDefaultScriptedContentFragmentProviderFiles.AddUpdateSupplementaryFile(_widgetProvider, instanceId, filename, assembly.GetManifestResourceStream(resourceName));
                        }
    
                    }
                }
    
    
                #endregion