ThreadSky
About ThreadSky
Log In
718louis.bsky.social
•
55 days ago
Not a perfect solution, but if you use gmail you can go to
https://script.new
to create an AppsScript program
Comments
Log in
with your Bluesky account to leave a comment
[–]
718louis.bsky.social
•
55 days ago
Then paste and run:
function myFunction() {
let ids = []
let threads =
https://GmailApp.search("subject:\"SR
Submitted # 311-\"");
for(let thread of threads) {
ids.push(thread.getFirstMessageSubject().substring(15));
}
Logger.log(ids)
}
3
1
reply
[–]
jehiah.cz
•
55 days ago
I have some similar app scripting I've used (which is to say I think this is the best approach). Perhaps i should try to polish it up some.
1
reply
Posting Rules
Be respectful to others
No spam or self-promotion
Stay on topic
Follow Bluesky's terms of service
×
Reply
Post Reply
Comments
function myFunction() {
let ids = []
let threads = https://GmailApp.search("subject:\"SR Submitted # 311-\"");
for(let thread of threads) {
ids.push(thread.getFirstMessageSubject().substring(15));
}
Logger.log(ids)
}