As soon as I linked my email to another site, this one I was immediately blocked on cloudskillsboost
@tauqeerzardi384421 сағат бұрын
How to download after link got expired and data is also deleted from phone
@ehtishamzubair2 күн бұрын
The account is created but it is not allow us to add chrome extension in that. Is this any solution of this?
@badalchoudhary5062 күн бұрын
it works only for 5 times
@RevolutVoice2 күн бұрын
Try "oracle of light", the Alexa skill powered by chatGPT
@hairyguysketches97993 күн бұрын
Is there a way to run this script on only select labels instead of the entire inbox?
@zafarsaifi98645 күн бұрын
Getting Type error: rows.forEach is not a function
@OutrightSystems4 күн бұрын
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.
@tutuco86806 күн бұрын
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) })}
@rjaybuls56097 күн бұрын
Can we use this to send more than 20k messages?
@muhammadjunaid162813 күн бұрын
thanks
@OutrightSystems11 күн бұрын
Thanks for watching! Please like and subscribe to our KZbin channel.
@mohammedashik-ns5fo13 күн бұрын
I want to extract data from more than 11000 emails...Is it possible to extract 11k extracted data in Google Sheets
@OutrightSystems11 күн бұрын
Yes, you can extract data from more than 11,000 emails and populate it into Google Sheets.
@mohammedashik-ns5fo4 күн бұрын
@@OutrightSystems coulde you please send the code for extracting 11000 emails
@bulltuft17 күн бұрын
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 🙏
@jasonrees135714 күн бұрын
Following this! Would make for a great video for sure.
@emigosel684118 күн бұрын
It cannot be used for binding with certain games, but it works for a plain google sign in and KZbin account.
@OutrightSystems18 күн бұрын
Blog URL: www.outrightcrm.com/blog/create-multiple-emails-with-single-gmail-account/#google_vignette
@omfactoryinfo355618 күн бұрын
This is very helpful! Please share the whole script if possible. Thank you!
@OutrightSystems18 күн бұрын
The script is provided in the video description. Please visit the blog link and copy it.
@HenryMcCain-td3jt23 күн бұрын
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
@IzozzIzozz23 күн бұрын
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) }); }
@muhammadaiman371325 күн бұрын
Thank you so much. It works🎉
@OutrightSystems19 күн бұрын
Thanks for watching! Please like and subscribe to our KZbin channel.
@DeepakSah3.027 күн бұрын
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; } } }
@effyleazer400628 күн бұрын
Please grant access for the script, thank you!
@OutrightSystems25 күн бұрын
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!""""
@joycefrank874628 күн бұрын
@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Ай бұрын
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.
@OutrightSystems29 күн бұрын
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Ай бұрын
Thanks a lot
@OutrightSystems29 күн бұрын
Thanks for watching! Please like and subscribe to our KZbin channel.
@historyhubschannelАй бұрын
it almost gave me some hope but then i saw limited access to other websites , i can't signup to heygen ai
@MukhamoTitiАй бұрын
this works, thank you so much!!
@OutrightSystemsАй бұрын
Hi, Thanks for watching! Please like and subscribe to our KZbin channel.
@mertokalito63Ай бұрын
I cant get any Codes from this emaisl
@AlexanderxavieАй бұрын
I thought the whole comment about Jeyfix1 are bot,but I was wrong he's legit I recommend him
@vivekSahu-c2fАй бұрын
Thanks Ho Gaya
@OutrightSystemsАй бұрын
Hi, Thanks for watching! Please like and subscribe to our KZbin channel.
@fabb2940Ай бұрын
Did this and my accounts got suspended for google cloud
@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Ай бұрын
Can you pls share the script ?
@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Ай бұрын
is it temporary account or permanent
@OutrightSystemsАй бұрын
It is a permanent account that has been created.
@loveavii_Ай бұрын
can we use it?
@OutrightSystemsАй бұрын
Yes, definitely, you can use this.
@whywhysaysoАй бұрын
Is it not work after 1 hr?
@OutrightSystemsАй бұрын
It will work permanently. After 1 hour, if you want to create another account, you can do so
@sweetcat970413 күн бұрын
Thanks
@joseventura9685Ай бұрын
Love your voice! You should make a AI voice!😊
@OutrightSystemsАй бұрын
Hi, thanks for watching! Please like and subscribe to our KZbin channel."
@robertrobert2566Ай бұрын
i need access to the script please
@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Ай бұрын
hello I just wrote to you because the problem is that it doesn't work for me
@OutrightSystemsАй бұрын
Please send me the error with a screenshot. I suggest you change the API key.
@robertrobert2566Ай бұрын
I requested access to the script,
@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Ай бұрын
Good to know. Thank you.
@OutrightSystemsАй бұрын
Thanks for watching! Please like and subscribe to our KZbin channel.
@SpinandPosePHАй бұрын
Execution was completed successfully but when I tried to create new docs, it did not generate a new document or a link
@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Ай бұрын
Thanks
@OutrightSystemsАй бұрын
Thanks for watching! Please like and subscribe to our KZbin channel.
@alfredogonzalezgonzalez2225Ай бұрын
how can copy a image on a cell (sheet) to the Doc template?
@OutrightSystemsАй бұрын
If you need a custom script to fill images and text from a sheet into Google Docs, contact us at [email protected].
@ajitsaxena1317Ай бұрын
Hi! Is the link to the script available is not working for me. Kindly Help Please
@OutrightSystemsАй бұрын
Please share a screenshot of the error. You can send it to [email protected].
@HoganBunkerАй бұрын
Did you get the link?
@MohdSameer-v6dАй бұрын
Awesome videos!! just waiting for access, I sent out the approval request.
@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Ай бұрын
@@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Ай бұрын
Hi Sameer, I’ve sent you the document at your Gmail ID, [email protected].
@NguyenMinhVLАй бұрын
thank you, I appreciate a lot! 🇻🇳 <3
@OutrightSystemsАй бұрын
Thanks for watching! Please like and subscribe to our KZbin channel.
@MohamedHassan-up7syАй бұрын
Just requested for the script, this is a great solution guys. Well done at Outright!!
@OutrightSystemsАй бұрын
Thanks for watching! Please like and subscribe to our KZbin channel.
@a51moonАй бұрын
Thanks for solved my biggest problem
@OutrightSystemsАй бұрын
Thanks for watching! Please like and subscribe to our KZbin channel.
@ankitghosh2910Ай бұрын
Thanks for the AppScipt code
@martinmwangi5Ай бұрын
This is informative, I need access
@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!""""