Alaya AI | All You Need To Know
2:28
Пікірлер
@jc016a012
@jc016a012 13 сағат бұрын
hi the script shown in the link are not the same
@BredDeka
@BredDeka 19 сағат бұрын
As soon as I linked my email to another site, this one I was immediately blocked on cloudskillsboost
@tauqeerzardi3844
@tauqeerzardi3844 21 сағат бұрын
How to download after link got expired and data is also deleted from phone
@ehtishamzubair
@ehtishamzubair 2 күн бұрын
The account is created but it is not allow us to add chrome extension in that. Is this any solution of this?
@badalchoudhary506
@badalchoudhary506 2 күн бұрын
it works only for 5 times
@RevolutVoice
@RevolutVoice 2 күн бұрын
Try "oracle of light", the Alexa skill powered by chatGPT
@hairyguysketches9799
@hairyguysketches9799 3 күн бұрын
Is there a way to run this script on only select labels instead of the entire inbox?
@zafarsaifi9864
@zafarsaifi9864 5 күн бұрын
Getting Type error: rows.forEach is not a function
@OutrightSystems
@OutrightSystems 4 күн бұрын
Please watch the video carefully and follow the process. If it's not resolved, contact us at [email protected], and we will be happy to help you.
@tutuco8680
@tutuco8680 6 күн бұрын
This is the code used in the video: function onOpen() { const ui= SpreadsheetApp.getUi(); const menu = ui.createMenu('AutoFill Docs'); menu.addItem('Create New Docs', 'createNewGoogleDocs') menu.addToUi(); } function createNewGoogleDocs(){ const googleDocTemplate = DriveApp.getFileById('your doc file id'); const destinationFolder = DriveApp.getFolderById('your drive folder id'); const sheet = SpreadsheetApp .getActiveSpreadsheet() .getSheetByName('your sheet name') const rows = sheet.getDataRange().getValues(); rows.forEach(function(row, index) { if (index === 0) return; if (row[5]) return; const copy = googleDocTemplate.makeCopy(`${row[1]}, ${row[0]}) `, destinationFolder); const doc = DocumentApp.openById(copy.getId()) const body = doc.getBody(); body.replaceText('{{Field 1}}', row[0]); body.replaceText('{{Field 2}}', row[1]); doc.saveAndClose(); const url = doc.getUrl(); sheet.getRange (index + 1, 2).setValue(url) })}
@rjaybuls5609
@rjaybuls5609 7 күн бұрын
Can we use this to send more than 20k messages?
@muhammadjunaid1628
@muhammadjunaid1628 13 күн бұрын
thanks
@OutrightSystems
@OutrightSystems 11 күн бұрын
Thanks for watching! Please like and subscribe to our KZbin channel.
@mohammedashik-ns5fo
@mohammedashik-ns5fo 13 күн бұрын
I want to extract data from more than 11000 emails...Is it possible to extract 11k extracted data in Google Sheets
@OutrightSystems
@OutrightSystems 11 күн бұрын
Yes, you can extract data from more than 11,000 emails and populate it into Google Sheets.
@mohammedashik-ns5fo
@mohammedashik-ns5fo 4 күн бұрын
@@OutrightSystems coulde you please send the code for extracting 11000 emails
@bulltuft
@bulltuft 17 күн бұрын
Hey team, love this! How do we get this to work for labels? Would be good to be able to pull from selective labels. Or, incorporate the labels as a head then filter within google 🙏
@jasonrees1357
@jasonrees1357 14 күн бұрын
Following this! Would make for a great video for sure.
@emigosel6841
@emigosel6841 18 күн бұрын
It cannot be used for binding with certain games, but it works for a plain google sign in and KZbin account.
@OutrightSystems
@OutrightSystems 18 күн бұрын
Blog URL: www.outrightcrm.com/blog/create-multiple-emails-with-single-gmail-account/#google_vignette
@omfactoryinfo3556
@omfactoryinfo3556 18 күн бұрын
This is very helpful! Please share the whole script if possible. Thank you!
@OutrightSystems
@OutrightSystems 18 күн бұрын
The script is provided in the video description. Please visit the blog link and copy it.
@HenryMcCain-td3jt
@HenryMcCain-td3jt 23 күн бұрын
Am also one of the persons Jeyfix1 help in restoring my account that's why am here to give a shout out to him from his handle
@IzozzIzozz
@IzozzIzozz 23 күн бұрын
function onOpen() { const ui = SpreadsheetApp.getUi(); const menu = ui.createMenu('AutoFill Docs'); menu.addItem('Create New Docs', 'createNewGoogleDocs'); menu.addToUi(); } function createNewGoogleDocs() { // Google Docs template file ID and destination folder ID const googleDocTemplate = DriveApp.getFileById('104gfigjCExDDZb_P8UJpC-WbF5gsEzuiBHUVcoS1Q58'); const destinationFolder = DriveApp.getFolderById('1pYBhB-Y3fL2_FfahCKKdFBtmyzoQUj8Y'); // Get the active spreadsheet and the sheet by name const sheet = SpreadsheetApp.getActiveSpreadsheet().getSheetByName('Sheet1'); // Change to your actual sheet name const rows = sheet.getDataRange().getValues(); // Get all the rows // Iterate through each row in the sheet (skipping the first row) rows.forEach(function(row, index) { if (index == 0) return; // Skip header row if (!row[0]) return; // Skip if FULLNAME is empty // Create a copy of the Google Doc template const copy = googleDocTemplate.makeCopy(`${row[0]} Employee Details`, destinationFolder); const doc = DocumentApp.openById(copy.getId()); const body = doc.getBody(); // Replace placeholders in the template with actual data from the sheet body.replaceText('{{FULLNAME}}', row[0]); // FULLNAME body.replaceText('{{REGNO}}', row[1]); // Your Address body.replaceText('{{TOPIC}}', row[2]); // TOPIC // Save and close the document doc.saveAndClose(); // Get the URL of the newly created Google Doc const url = doc.getUrl(); // Insert the document URL back into the corresponding row in column 4 (Document Link) sheet.getRange(index + 1, 4).setValue(url); // Column D (Document Link) }); }
@muhammadaiman3713
@muhammadaiman3713 25 күн бұрын
Thank you so much. It works🎉
@OutrightSystems
@OutrightSystems 19 күн бұрын
Thanks for watching! Please like and subscribe to our KZbin channel.
@DeepakSah3.0
@DeepakSah3.0 27 күн бұрын
function checkForDubplicate() { var sheet = SpreadsheetApp.getActiveSheet(); var range = sheet.getDataRange(); var values = range.getValue(); var newRow = sheet.getActiveRange().getRow(); var newCol = sheet.getActiveRange().getColumn(); var newValue = sheet.getActiveRange().getValue().toString().toLowerCase(); var duplicateCells = []; for (var row = 0; row < values.length; row++){ for (var col =0; col <values[row].length; col++){ if (values[row][col].toString().toLowerCase() === newValue && (row+1) != newRow && (col+1) != newCol){ var dubplicateRow = row+1; var dubplicateCol = col+1; duplicateCells.push(String.fromCharCode(64+dubplicateCol)+dubplicateRow); } } } if (duplicateCells.length>0){ var response = Browser("Dubplicate Record Found", "The Conumser Number '" + sheet.getActiveRange().getValue() + "' already exists in the following cells: " + duplicateCells.join(", ") + ". Do you still want to add it?", Browser.Buttons.YES_NO); if ( response == "no"){ sheet.getRange(newRow, newCol).clearContent; } if ( response == "yes") { sheet.getRange(newRow, newCol).clearContent; } } }
@effyleazer4006
@effyleazer4006 28 күн бұрын
Please grant access for the script, thank you!
@OutrightSystems
@OutrightSystems 25 күн бұрын
Hi, Thanks for your request, Your request has been approved. If you feel that script helps you and If you haven't already, please 'Like' our video and subscribe for more exciting content. Your subscription means a lot! Explore our store for a variety of free and paid products/services: store.outrightcrm.com. Lastly, share your thoughts on our Google My Business profile: g.page/r/CR8HImMos1HTEB0/review. Your review helps us improve and serve you better. Thanks for being an essential part of our journey!""""
@joycefrank8746
@joycefrank8746 28 күн бұрын
@lG I msg Jeyfix1 whose name is all over the comment section,I was in doubt about him at first but then he proved himself to be legit I thought it’s not gonna be possible to get a deleted account back but surprisingly he did I can now vouch for him
@thomasperron3008
@thomasperron3008 Ай бұрын
Thank you for the concise review. This is a powerful tool and you really helped me a lot. Please send the access so that I can deploy in my business.
@OutrightSystems
@OutrightSystems 29 күн бұрын
Hi, Thanks for your request, Your request has been approved. If you feel that script helps you and If you haven't already, please 'Like' our video and subscribe for more exciting content. Your subscription means a lot! Explore our store for a variety of free and paid products/services: store.outrightcrm.com. Lastly, share your thoughts on our Google My Business profile: g.page/r/CR8HImMos1HTEB0/review. Your review helps us improve and serve you better. Thanks for being an essential part of our journey!""""
@shreya_das_08
@shreya_das_08 Ай бұрын
Thanks a lot
@OutrightSystems
@OutrightSystems 29 күн бұрын
Thanks for watching! Please like and subscribe to our KZbin channel.
@historyhubschannel
@historyhubschannel Ай бұрын
it almost gave me some hope but then i saw limited access to other websites , i can't signup to heygen ai
@MukhamoTiti
@MukhamoTiti Ай бұрын
this works, thank you so much!!
@OutrightSystems
@OutrightSystems Ай бұрын
Hi, Thanks for watching! Please like and subscribe to our KZbin channel.
@mertokalito63
@mertokalito63 Ай бұрын
I cant get any Codes from this emaisl
@Alexanderxavie
@Alexanderxavie Ай бұрын
I thought the whole comment about Jeyfix1 are bot,but I was wrong he's legit I recommend him
@vivekSahu-c2f
@vivekSahu-c2f Ай бұрын
Thanks Ho Gaya
@OutrightSystems
@OutrightSystems Ай бұрын
Hi, Thanks for watching! Please like and subscribe to our KZbin channel.
@fabb2940
@fabb2940 Ай бұрын
Did this and my accounts got suspended for google cloud
@BrillStroke
@BrillStroke Ай бұрын
Well I'm back here to appreciate jeyfix1 for his good works,hes honestly doing a good job helping people get back their account,just visit his page and confirm from your self
@dhanarajrajaraman9616
@dhanarajrajaraman9616 Ай бұрын
Can you pls share the script ?
@OutrightSystems
@OutrightSystems Ай бұрын
Please go to the video description, click on the blog link, find the 'Download Apps Script' button, click it, & copy the code.
@topfive-p1l
@topfive-p1l Ай бұрын
is it temporary account or permanent
@OutrightSystems
@OutrightSystems Ай бұрын
It is a permanent account that has been created.
@loveavii_
@loveavii_ Ай бұрын
can we use it?
@OutrightSystems
@OutrightSystems Ай бұрын
Yes, definitely, you can use this.
@whywhysayso
@whywhysayso Ай бұрын
Is it not work after 1 hr?
@OutrightSystems
@OutrightSystems Ай бұрын
It will work permanently. After 1 hour, if you want to create another account, you can do so
@sweetcat9704
@sweetcat9704 13 күн бұрын
Thanks
@joseventura9685
@joseventura9685 Ай бұрын
Love your voice! You should make a AI voice!😊
@OutrightSystems
@OutrightSystems Ай бұрын
Hi, thanks for watching! Please like and subscribe to our KZbin channel."
@robertrobert2566
@robertrobert2566 Ай бұрын
i need access to the script please
@OutrightSystems
@OutrightSystems Ай бұрын
Hi, Thanks for your request, Your request has been approved. If you feel that script helps you and If you haven't already, please 'Like' our video and subscribe for more exciting content. Your subscription means a lot! Explore our store for a variety of free and paid products/services: store.outrightcrm.com. Lastly, share your thoughts on our Google My Business profile: g.page/r/CR8HImMos1HTEB0/review. Your review helps us improve and serve you better. Thanks for being an essential part of our journey!"""" 1
@chrisder1814
@chrisder1814 Ай бұрын
hello I just wrote to you because the problem is that it doesn't work for me
@OutrightSystems
@OutrightSystems Ай бұрын
Please send me the error with a screenshot. I suggest you change the API key.
@robertrobert2566
@robertrobert2566 Ай бұрын
I requested access to the script,
@OutrightSystems
@OutrightSystems Ай бұрын
Hi, Thanks for your request, Your request has been approved. If you feel that script helps you and If you haven't already, please 'Like' our video and subscribe for more exciting content. Your subscription means a lot! Explore our store for a variety of free and paid products/services: store.outrightcrm.com. Lastly, share your thoughts on our Google My Business profile: g.page/r/CR8HImMos1HTEB0/review. Your review helps us improve and serve you better. Thanks for being an essential part of our journey!"""" 1
@pleabargain
@pleabargain Ай бұрын
Good to know. Thank you.
@OutrightSystems
@OutrightSystems Ай бұрын
Thanks for watching! Please like and subscribe to our KZbin channel.
@SpinandPosePH
@SpinandPosePH Ай бұрын
Execution was completed successfully but when I tried to create new docs, it did not generate a new document or a link
@OutrightSystems
@OutrightSystems Ай бұрын
Please watch the video step by step. You need to create a Google Doc, fill in the folder ID and template ID, and ensure the fields in the Doc are correct. Then run the script. If you face any issues, I have an updated version of the script available to fill the Google Doc. Watch this video: kzbin.info/www/bejne/b52zoZ2FqpWLeZosi=BxqS_oJiL3E3q8GR.
@chasepawsfreeitems7927
@chasepawsfreeitems7927 Ай бұрын
Thanks
@OutrightSystems
@OutrightSystems Ай бұрын
Thanks for watching! Please like and subscribe to our KZbin channel.
@alfredogonzalezgonzalez2225
@alfredogonzalezgonzalez2225 Ай бұрын
how can copy a image on a cell (sheet) to the Doc template?
@OutrightSystems
@OutrightSystems Ай бұрын
If you need a custom script to fill images and text from a sheet into Google Docs, contact us at [email protected].
@ajitsaxena1317
@ajitsaxena1317 Ай бұрын
Hi! Is the link to the script available is not working for me. Kindly Help Please
@OutrightSystems
@OutrightSystems Ай бұрын
Please share a screenshot of the error. You can send it to [email protected].
@HoganBunker
@HoganBunker Ай бұрын
Did you get the link?
@MohdSameer-v6d
@MohdSameer-v6d Ай бұрын
Awesome videos!! just waiting for access, I sent out the approval request.
@OutrightSystems
@OutrightSystems Ай бұрын
Hi, Thanks for your request, Your request has been approved. If you feel that script helps you and If you haven't already, please 'Like' our video and subscribe for more exciting content. Your subscription means a lot! Explore our store for a variety of free and paid products/services: store.outrightcrm.com. Lastly, share your thoughts on our Google My Business profile: g.page/r/CR8HImMos1HTEB0/review. Your review helps us improve and serve you better. Thanks for being an essential part of our journey!""""
@MohdSameer-v6d
@MohdSameer-v6d Ай бұрын
@@OutrightSystems Hey, I did not get access, still not able to access google sheet and docs. Can you please take a look and reapprove it. I have requested again. Thank you for your help :)
@OutrightSystems
@OutrightSystems Ай бұрын
Hi Sameer, I’ve sent you the document at your Gmail ID, [email protected].
@NguyenMinhVL
@NguyenMinhVL Ай бұрын
thank you, I appreciate a lot! 🇻🇳 <3
@OutrightSystems
@OutrightSystems Ай бұрын
Thanks for watching! Please like and subscribe to our KZbin channel.
@MohamedHassan-up7sy
@MohamedHassan-up7sy Ай бұрын
Just requested for the script, this is a great solution guys. Well done at Outright!!
@OutrightSystems
@OutrightSystems Ай бұрын
Thanks for watching! Please like and subscribe to our KZbin channel.
@a51moon
@a51moon Ай бұрын
Thanks for solved my biggest problem
@OutrightSystems
@OutrightSystems Ай бұрын
Thanks for watching! Please like and subscribe to our KZbin channel.
@ankitghosh2910
@ankitghosh2910 Ай бұрын
Thanks for the AppScipt code
@martinmwangi5
@martinmwangi5 Ай бұрын
This is informative, I need access
@OutrightSystems
@OutrightSystems Ай бұрын
Hi, Thanks for your request, Your request has been approved. If you feel that script helps you and If you haven't already, please 'Like' our video and subscribe for more exciting content. Your subscription means a lot! Explore our store for a variety of free and paid products/services: store.outrightcrm.com. Lastly, share your thoughts on our Google My Business profile: g.page/r/CR8HImMos1HTEB0/review. Your review helps us improve and serve you better. Thanks for being an essential part of our journey!""""