I think you wanted to reuse the same html block again. If i understand you correctly, below code should help
<ng-template #MsgRef >
{{ mycontent }}
</ng-template>
To reuse above block in the same template,
<ng-template [ngTemplateOutlet]="MsgRef"></ng-template> //reuse any number of times