Google Apps ScriptでテンプレートHTMLを作成し、doGetで表示。そのスクリプトのURLをiframeで指定して他サイトから表示することは可能でしょうか?

index.html

<html>
<body>
    <?
    var site = sitesApp.getPageByUrl("https://sites.google.com/...");
    var contents = site.getHtmlContent();
    output.append(contents);
    ?>
</body>
</html>

code.gs

function doGet() {
    var html = HtmlService.createTemplateFromFile("index");
    return html.evaluate;
}