Difference between revisions of "Copying Email Templates Between Shared Mailboxes"

From support-works
Jump to navigation Jump to search
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
If you wish to copy email templates from an existing shared mailbox to a newly created one please carry out the following:
 
If you wish to copy email templates from an existing shared mailbox to a newly created one please carry out the following:
 +
  
 
  On the Supportworks server > open the Interactive SQL utility and type: <br>
 
  On the Supportworks server > open the Interactive SQL utility and type: <br>
 
  Use sw_messagestore;  [RETURN]  <br>
 
  Use sw_messagestore;  [RETURN]  <br>
 
  insert  shared__NewMailboxName_templates select * from shared__ OldMailboxName _templates;  [RETURN]
 
  insert  shared__NewMailboxName_templates select * from shared__ OldMailboxName _templates;  [RETURN]
 +
 +
 +
Obviously you will need to replace NewMailboxName and OldMailboxName above with the actual old and new mailbox names.
 +
  
 
Close and reopen the manage email templates window to show the templates, If this view was opened prior to running the query above.
 
Close and reopen the manage email templates window to show the templates, If this view was opened prior to running the query above.

Latest revision as of 14:57, 3 July 2018

If you wish to copy email templates from an existing shared mailbox to a newly created one please carry out the following:


On the Supportworks server > open the Interactive SQL utility and type: 
Use sw_messagestore; [RETURN]
insert shared__NewMailboxName_templates select * from shared__ OldMailboxName _templates; [RETURN]


Obviously you will need to replace NewMailboxName and OldMailboxName above with the actual old and new mailbox names.


Close and reopen the manage email templates window to show the templates, If this view was opened prior to running the query above.