I think you made a mistake with brackets.
function onInstall() {
onOpen();
}
function onOpen(e) {
SpreadsheetApp.getActive()
.createMenu('Sentrix Messaging')
.addItem('Index', 'new mail')
.addItem('Compose', 'Write mail')
.addToUi();
Browser.msgBox('Welcome to Sentrix Email');
ShowSidebar();
}
function showSidebar() {
var html = HtmlService.createTemplateFromFile("Inbox")
.evaluate()
.setTitle("Email");
SpreadsheetApp.getUi().showSidebar(html);
}
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…