DEV Community

Discussion on: Send daily automated tweets from a Google Sheet by using Google Scripts

 
igyver profile image
Kay • Edited

Done. Works. :) Is just not as complicated as thought. I love it.

@AngeloM Thank you for the inspiration.

How I have done it. Just created a second sheet and copied the original Script. I change the first rows to:

function sendDailyTweet2() {
var sheet = SpreadsheetApp.getActiveSpreadsheet();
SpreadsheetApp.setActiveSheet(sheet.getSheets()[1]);

....

Thread Thread
 
albertomontalesi profile image
AlbertoM

Awesome, if you want to go further you can try adding images to your tweets.

Thread Thread
 
igyver profile image
Kay

I'm familiar with Markup but Dev.to is using something different so I didnt spend so much time for that.

But of course, I'll do it as soon as I figured out how it works. :)