Last active
August 12, 2020 20:40
-
-
Save siliconvallaeys/b7bd08273334afdba1e28cbd6855a461 to your computer and use it in GitHub Desktop.
Append YouTube stats to a video placement report from AdWords to help identify videos to add as placement exclusions.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
// AdWords Script: Append YouTube Video Stats to Video Placement Report | |
// --------------------------------------------------------------------- | |
// Copyright 2017 Optmyzr Inc., All Rights Reserved | |
// | |
// This script adds YT statistics like 'likes,' 'dislikes,' 'comments,' etc to a Google Sheet of videos | |
// that your in-stream video ads have appeared on. You can then use these stats to determine when a video should | |
// be added as a negative placement, for example when there is too high a ratio of 'dislikes' to 'likes'. | |
// | |
// Thanks to Kris Belau from Firewood Marketing for presenting the concept at SMX West 2017. | |
// | |
// Note that this script pulls stats from the YouTube Data API and these may not match exactly to what appears | |
// on the video's view page on youtube.com. No data will be returned for some videos, even when they have | |
// data on youtube.com | |
// | |
// | |
// For more PPC management tools, visit www.optmyzr.com | |
// | |
*/ | |
function main() { | |
// EDIT THIS. REPLACE THE URL WITH THE URL FOR YOUR DATA SHEET | |
//----------------------------- | |
var spreadsheetUrl = "https://docs.google.com/spreadsheets/d/1T3pjCIXPtBBzvzq83g3Phob4nJ7lcojsXJwN2CScd40/edit#gid=1648890643"; | |
// DON'T EDIT ANYTHING PAST HERE --------- | |
var currentSetting = new Object(); | |
var spreadsheet = SpreadsheetApp.openByUrl(spreadsheetUrl); | |
var sheet = spreadsheet.getActiveSheet(); | |
var data = sheet.getDataRange(); | |
var numRows = data.getNumRows(); | |
var numColumns = data.getNumColumns(); | |
var values = data.getValues(); | |
var columnNames = new Array(); | |
var spreadsheetInfo = getSpreadsheetData(spreadsheetUrl); | |
if(!spreadsheetInfo.dislikeCountColumn) { | |
sheet.getRange(spreadsheetInfo.headerRow+1, numColumns+1, 1, 1).setValue(["dislike count"]); | |
numColumns++; | |
spreadsheetInfo.dislikeCountColumn = numColumns; | |
} | |
if(!spreadsheetInfo.likeCountColumn) { | |
sheet.getRange(spreadsheetInfo.headerRow+1, numColumns+1, 1, 1).setValue(["like count"]); | |
numColumns++; | |
spreadsheetInfo.likeCountColumn = numColumns; | |
} | |
if(!spreadsheetInfo.viewCountColumn) { | |
sheet.getRange(spreadsheetInfo.headerRow+1, numColumns+1, 1, 1).setValue(["view count"]); | |
numColumns++; | |
spreadsheetInfo.viewCountColumn = numColumns; | |
} | |
if(!spreadsheetInfo.commentCountColumn) { | |
sheet.getRange(spreadsheetInfo.headerRow+1, numColumns+1, 1, 1).setValue(["comment count"]); | |
numColumns++; | |
spreadsheetInfo.commentCountColumn = numColumns; | |
} | |
if(!spreadsheetInfo.favoriteCountColumn) { | |
sheet.getRange(spreadsheetInfo.headerRow+1, numColumns+1, 1, 1).setValue(["favorite count"]); | |
numColumns++; | |
spreadsheetInfo.favoriteCountColumn = numColumns; | |
} | |
Logger.log("YT stats are now being added to " + spreadsheetUrl); | |
for(var i = spreadsheetInfo.firstDataRow; i<numRows; i++) { | |
var row = values[i]; | |
var url = row[spreadsheetInfo.urlColumn]; | |
var urlParts = url.split("/"); | |
var videoId = urlParts[2]; | |
//Logger.log("video ID: " + videoId); | |
if(!videoId) break; | |
try { | |
var list = YouTube.Videos.list("Statistics", { | |
id: videoId | |
}); | |
//Logger.log(JSON.stringify(list)); | |
var items = list.items; | |
var item = items[0]; | |
var statistics = item.statistics; | |
if(statistics) { | |
var dislikeCount = statistics.dislikeCount; | |
var likeCount = statistics.likeCount; | |
var favoriteCount = statistics.favoriteCount; | |
var viewCount = statistics.viewCount; | |
var commentCount = statistics.commentCount; | |
sheet.getRange(i+1, spreadsheetInfo.dislikeCountColumn, 1, 1).setValue(dislikeCount); | |
sheet.getRange(i+1, spreadsheetInfo.likeCountColumn, 1, 1).setValue(likeCount); | |
sheet.getRange(i+1, spreadsheetInfo.viewCountColumn, 1, 1).setValue(viewCount); | |
sheet.getRange(i+1, spreadsheetInfo.favoriteCountColumn, 1, 1).setValue(favoriteCount); | |
sheet.getRange(i+1, spreadsheetInfo.commentCountColumn, 1, 1).setValue(commentCount); | |
} else { | |
Logger.log("The YT API returned no stats for video with ID " + videoId); | |
} | |
} catch (e) { | |
Logger.log("No YT data for video with ID " + videoId + ". " + e); | |
} | |
} | |
} | |
function getSpreadsheetData(spreadsheetUrl) { | |
var spreadsheetInfo = new Object(); | |
var spreadsheet = SpreadsheetApp.openByUrl(spreadsheetUrl); | |
var sheet = spreadsheet.getActiveSheet(); | |
var data = sheet.getDataRange(); | |
var numRows = data.getNumRows(); | |
var numColumns = data.getNumColumns(); | |
var values = data.getValues(); | |
var columnNames = new Array(); | |
for(var i = 0; i<numRows; i++) { | |
if(spreadsheetInfo.headerRow != null) return(spreadsheetInfo); | |
for(var j = 0; j < numColumns; j++) { | |
var row = values[i]; | |
var value = row[j]; | |
Logger.log(value); | |
columnNames[i] = value; | |
try { | |
if(value.toLowerCase().indexOf("url") != -1) { | |
spreadsheetInfo.firstDataRow = i+1; | |
spreadsheetInfo.headerRow = i; | |
spreadsheetInfo.urlColumn = j; | |
} else if(value.toLowerCase().indexOf("like count") != -1) { | |
if(value.toLowerCase().indexOf("dislike count") != -1) { | |
spreadsheetInfo.firstDataRow = i+1; | |
spreadsheetInfo.headerRow = i; | |
spreadsheetInfo.dislikeCountColumn = j; | |
} else { | |
spreadsheetInfo.firstDataRow = i+1; | |
spreadsheetInfo.headerRow = i; | |
spreadsheetInfo.likeCountColumn = j; | |
} | |
} else if(value.toLowerCase().indexOf("view count") != -1) { | |
spreadsheetInfo.firstDataRow = i+1; | |
spreadsheetInfo.headerRow = i; | |
spreadsheetInfo.viewCountColumn = j; | |
} else if(value.toLowerCase().indexOf("favorite count") != -1) { | |
spreadsheetInfo.firstDataRow = i+1; | |
spreadsheetInfo.headerRow = i; | |
spreadsheetInfo.favoriteCountColumn = j; | |
} else if(value.toLowerCase().indexOf("comment count") != -1) { | |
spreadsheetInfo.firstDataRow = i+1; | |
spreadsheetInfo.headerRow = i; | |
spreadsheetInfo.commentCountColumn = j; | |
} | |
} catch(e) { | |
// | |
} | |
} | |
} | |
} |
Author
siliconvallaeys
commented
Aug 12, 2020
via email
Hi Irem,
I noticed my included headshot was low-res so here's a better one: https://drive.google.com/file/d/1atzf839W_FFedG0yPJZezpl8sm5ptxti/view?usp=sharing
For social:
Frederick’s Social:
https://www.linkedin.com/in/frederickvallaeys/ ( https://www.linkedin.com/in/frederickvallaeys/ )
https://twitter.com/siliconvallaeys ( https://twitter.com/siliconvallaeys )
Optmyzr’s Social:
https://www.linkedin.com/company/optmyzr ( https://www.linkedin.com/company/optmyzr )
https://twitter.com/Optmyzr ( https://twitter.com/Optmyzr )
Thanks!
Fred
*Frederick Vallaeys*
Cofounding CEO , Optmyzr
[email protected]
https://www.optmyzr.com
( http://us.linkedin.com/in/frederickvallaeys ) ( http://twitter.com/SiliconVallaeys ) ( http://youtube.com/user/optmyzr )
Author: Digital Marketing in an AI World ( https://www.amazon.com/Digital-Marketing-AI-World-Futureproofing-ebook/dp/B07QNMKK2L )
IMPORTANT: The contents of this email and any attachments are confidential. They are intended for the named recipient(s) only. If you have received this email by mistake, please notify the sender immediately and do not disclose the contents to anyone or make copies thereof.
Sent via Superhuman ( https://sprh.mn/[email protected] )
…On Wed, Aug 12, 2020 at 5:44 AM, İrem Topal < ***@***.*** > wrote:
Hi Frederick,
The subject is very suitable for us, thank you for your quick response.
We'll announce this topic with this title: Unlevel the PPC Playing Field.
I'll send our sharing when we publish it.
Also, which of your social media channels we can use for our promotions?
Generally, we are using LinkedIn and Twitter accounts but It is totally up
to you.
Best,
İrem Topal Sales & Marketing Consultant *P:* +90 216 336 903 (
https://llink.to/?u=https:%2F%2Flinks99.mixmaxusercontent.com%2FGv3jaF6ecRJdE2J2Q%2Fl%2F2kaRX5EXg9iinRGvW%3FmessageId%3DxDTP6pePCunCWKSao%26rn%3DIibvl3chJXZw9EItAyTFNlI%26re%3DgInJ3bu8WZ6Bkbvl3chJXZw9mI%26sc%3Dfalse&e=9143d6da753f66e186af4bc6e7e2dd9d
) 7 *P:* +44 20 3893 307 (
https://llink.to/?u=https:%2F%2Flinks92.mixmaxusercontent.com%2FGv3jaF6ecRJdE2J2Q%2Fl%2FWE94o5qtMOh4H9In2%3FmessageId%3DxDTP6pePCunCWKSao%26rn%3DIibvl3chJXZw9EItAyTFNlI%26re%3DgInJ3bu8WZ6Bkbvl3chJXZw9mI%26sc%3Dfalse&e=9143d6da753f66e186af4bc6e7e2dd9d
) 8
*A:* Gaziosmanpaşa Sk. No:12, Osmanağa, Kadıköy İstanbul - TR *A:* 33 Queen
Street, Office: 17, EC4R 1AP London, UK Website (
https://llink.to/?u=https:%2F%2Flinks92.mixmaxusercontent.com%2FGv3jaF6ecRJdE2J2Q%2Fl%2Fld7IeWl1PjD0DP8Lw%3FmessageId%3DxDTP6pePCunCWKSao%26rn%3DIibvl3chJXZw9EItAyTFNlI%26re%3DgInJ3bu8WZ6Bkbvl3chJXZw9mI%26sc%3Dfalse&e=9143d6da753f66e186af4bc6e7e2dd9d
) - YouTube (
https://llink.to/?u=https:%2F%2Flinks99.mixmaxusercontent.com%2FGv3jaF6ecRJdE2J2Q%2Fl%2F3xju3e2NwOhUBt2Vn%3FmessageId%3DxDTP6pePCunCWKSao%26rn%3DIibvl3chJXZw9EItAyTFNlI%26re%3DgInJ3bu8WZ6Bkbvl3chJXZw9mI%26sc%3Dfalse&e=9143d6da753f66e186af4bc6e7e2dd9d
) - LinkedIn (
https://llink.to/?u=https:%2F%2Flinks93.mixmaxusercontent.com%2FGv3jaF6ecRJdE2J2Q%2Fl%2FfNi2HmU0Tc0na9jo9%3FmessageId%3DxDTP6pePCunCWKSao%26rn%3DIibvl3chJXZw9EItAyTFNlI%26re%3DgInJ3bu8WZ6Bkbvl3chJXZw9mI%26sc%3Dfalse&e=9143d6da753f66e186af4bc6e7e2dd9d
) - Twitter (
https://llink.to/?u=https:%2F%2Flinks93.mixmaxusercontent.com%2FGv3jaF6ecRJdE2J2Q%2Fl%2FC289FBFhofytcuZWr%3FmessageId%3DxDTP6pePCunCWKSao%26rn%3DIibvl3chJXZw9EItAyTFNlI%26re%3DgInJ3bu8WZ6Bkbvl3chJXZw9mI%26sc%3Dfalse&e=9143d6da753f66e186af4bc6e7e2dd9d
)
Frederick Vallaeys < frederick@ optmyzr. com ( ***@***.*** ) >,
11 Ağu 2020 Sal, 21:00 tarihinde şunu yazdı:
> Hi İrem,
>
>
>
> How's this for topic:
>
> Unlevel the PPC Playing Field
>
> How to win in PPC when everyone gets the same automated tools from Google.
> It's a mistake to think that your work in PPC is done when you enable
> automation. By adding your human intelligence to automated tools, and by
> smartly combining different automations, you can far exceed your
> competitors' results. Learn how, and pick up some free Google Ads scripts
> when you attend this session.
>
>
>
>
>
>
>
> Name: Frederick Vallaeys
>
>
>
>
> Title: Cofounding CEO
>
>
>
>
> Company: Optmyzr
>
>
>
>
>
>
> Bio:
>
>
>
>
> Frederick (Fred) Vallaeys is a Silicon Valley entrepreneur, author and
> leading influencer in pay-per-click search marketing. One of Google’s
> first 500 employees, he helped pioneer PPC marketing as the company’s
> first AdWords Evangelist. Today he serves as Co-Founding CEO of Optmyzr, a
> leading and award-winning PPC management platform. A sought-after industry
> thought leader, he contributes to leading marketing publications and
> conferences, and is routinely called upon by journalists, writers and
> podcasters for his industry insight and vision.
>
>
>
>
>
>
> Headshot image: https:/ / drive. google. com/ file/ d/ 1KtDLIwcj5l_Ad5tDqz-tVaemtj4qBaZB/
> view?usp=sharing (
> https://drive.google.com/file/d/1KtDLIwcj5l_Ad5tDqz-tVaemtj4qBaZB/view?usp=sharing
> )
>
>
>
>
> Best,
>
> Fred
>
>
>
>
>
>
>
>
>
>
> *Frederick Vallaeys*
> Cofounding CEO , Optmyzr
>
>
>
>
> frederick@ optmyzr. com ( ***@***.*** )
>
>
>
> https:/ / www. optmyzr. com ( https://www.optmyzr.com )
>
>
>
>
>
> ( http://us.linkedin.com/in/frederickvallaeys ) (
> http://twitter.com/SiliconVallaeys ) ( http://youtube.com/user/optmyzr )
>
>
> Author: Digital Marketing in an AI World (
> https://www.amazon.com/Digital-Marketing-AI-World-Futureproofing-ebook/dp/B07QNMKK2L
> )
>
>
>
>
>
>
>
>
>
>
>
> IMPORTANT: The contents of this email and any attachments are
> confidential. They are intended for the named recipient(s) only. If you
> have received this email by mistake, please notify the sender immediately
> and do not disclose the contents to anyone or make copies thereof.
>
>
>
>
>
>
>
>
>
>
> Sent via Superhuman ( ***@***.*** )
>
>
>
> On Tue, Aug 11, 2020 at 6:05 AM, İrem Topal < irem@ zeo. org ( ***@***.***
> ) > wrote:
>
>> Hi Frederick,
>>
>>
>> First of all, thank you very much for accepting our invitation.
>>
>>
>>
>> For the subject matter, we are open for your suggestions. Only, we would
>> like to discuss the your topic suggestions in order not to conflict with
>> our other speakers.
>>
>>
>> There will be approximately 12 sessions in 2 days, 40 min for a session.
>> You can also split your time into two as a presentation and Q/A session.
>>
>>
>> Also for our marketing team, we need a small biography, a high-resolution
>> picture from you and which social media accounts of you we can use in
>> promotion.
>>
>>
>>
>> We are excitedly waiting for your return.
>>
>> Best,
>>
>>
>>
>>
>> İrem Topal Sales & Marketing Consultant *P:* +90 216 336 903 (
>> https://llink.to/?u=https:%2F%2Flinks99.mixmaxusercontent.com%2FGv3jaF6ecRJdE2J2Q%2Fl%2F2kaRX5EXg9iinRGvW%3FmessageId%3DxDTP6pePCunCWKSao%26rn%3DIibvl3chJXZw9EItAyTFNlI%26re%3DgInJ3bu8WZ6Bkbvl3chJXZw9mI%26sc%3Dfalse&e=04cc0c794f3aca719e831f9863e155e9
>> ) 7 *P:* +44 20 3893 307 (
>> https://llink.to/?u=https:%2F%2Flinks92.mixmaxusercontent.com%2FGv3jaF6ecRJdE2J2Q%2Fl%2FWE94o5qtMOh4H9In2%3FmessageId%3DxDTP6pePCunCWKSao%26rn%3DIibvl3chJXZw9EItAyTFNlI%26re%3DgInJ3bu8WZ6Bkbvl3chJXZw9mI%26sc%3Dfalse&e=04cc0c794f3aca719e831f9863e155e9
>> ) 8
>> *A:* Gaziosmanpaşa Sk. No:12, Osmanağa, Kadıköy İstanbul - TR *A:* 33 Queen
>> Street, Office: 17, EC4R 1AP London, UK Website (
>> https://llink.to/?u=https:%2F%2Flinks92.mixmaxusercontent.com%2FGv3jaF6ecRJdE2J2Q%2Fl%2Fld7IeWl1PjD0DP8Lw%3FmessageId%3DxDTP6pePCunCWKSao%26rn%3DIibvl3chJXZw9EItAyTFNlI%26re%3DgInJ3bu8WZ6Bkbvl3chJXZw9mI%26sc%3Dfalse&e=04cc0c794f3aca719e831f9863e155e9
>> ) - YouTube (
>> https://llink.to/?u=https:%2F%2Flinks99.mixmaxusercontent.com%2FGv3jaF6ecRJdE2J2Q%2Fl%2F3xju3e2NwOhUBt2Vn%3FmessageId%3DxDTP6pePCunCWKSao%26rn%3DIibvl3chJXZw9EItAyTFNlI%26re%3DgInJ3bu8WZ6Bkbvl3chJXZw9mI%26sc%3Dfalse&e=04cc0c794f3aca719e831f9863e155e9
>> ) - LinkedIn (
>> https://llink.to/?u=https:%2F%2Flinks93.mixmaxusercontent.com%2FGv3jaF6ecRJdE2J2Q%2Fl%2FfNi2HmU0Tc0na9jo9%3FmessageId%3DxDTP6pePCunCWKSao%26rn%3DIibvl3chJXZw9EItAyTFNlI%26re%3DgInJ3bu8WZ6Bkbvl3chJXZw9mI%26sc%3Dfalse&e=04cc0c794f3aca719e831f9863e155e9
>> ) - Twitter (
>> https://llink.to/?u=https:%2F%2Flinks93.mixmaxusercontent.com%2FGv3jaF6ecRJdE2J2Q%2Fl%2FC289FBFhofytcuZWr%3FmessageId%3DxDTP6pePCunCWKSao%26rn%3DIibvl3chJXZw9EItAyTFNlI%26re%3DgInJ3bu8WZ6Bkbvl3chJXZw9mI%26sc%3Dfalse&e=04cc0c794f3aca719e831f9863e155e9
>> )
>>
>>
>>
>>
>>
>>
>> Frederick Vallaeys < frederick@ optmyzr. com (
>> https://llink.to/?u=mailto:frederick%40optmyzr.com&e=04cc0c794f3aca719e831f9863e155e9
>> ) >, 7 Ağu 2020 Cum, 21:24 tarihinde şunu yazdı:
>>
>>
>>> Hi İrem,
>>>
>>>
>>>
>>> Thanks for the invite! I would love to participate virtually so you can
>>> announce my name now. Let me know what details you need and what timeline
>>> you have for topics, content, etc. Also my time slot and target length for
>>> the speech.
>>>
>>>
>>>
>>> Thanks!
>>>
>>> Frederick
>>>
>>>
>>>
>>>
>>>
>>>
>>>
>>>
>>>
>>>
>>>
>>>
>>> *Frederick Vallaeys*
>>> Cofounding CEO , Optmyzr
>>>
>>>
>>>
>>>
>>> frederick@ optmyzr. com (
>>> https://llink.to/?u=mailto:frederick%40optmyzr.com&e=04cc0c794f3aca719e831f9863e155e9
>>> )
>>>
>>>
>>>
>>> https:/ / www. optmyzr. com (
>>> https://llink.to/?u=https:%2F%2Fwww.optmyzr.com&e=04cc0c794f3aca719e831f9863e155e9
>>> )
>>>
>>>
>>>
>>>
>>>
>>> (
>>> https://llink.to/?u=http:%2F%2Fus.linkedin.com%2Fin%2Ffrederickvallaeys&e=04cc0c794f3aca719e831f9863e155e9
>>> ) (
>>> https://llink.to/?u=http:%2F%2Ftwitter.com%2FSiliconVallaeys&e=04cc0c794f3aca719e831f9863e155e9
>>> ) (
>>> https://llink.to/?u=http:%2F%2Fyoutube.com%2Fuser%2Foptmyzr&e=04cc0c794f3aca719e831f9863e155e9
>>> )
>>>
>>>
>>> Author: Digital Marketing in an AI World (
>>> https://llink.to/?u=https:%2F%2Fwww.amazon.com%2FDigital-Marketing-AI-World-Futureproofing-ebook%2Fdp%2FB07QNMKK2L&e=04cc0c794f3aca719e831f9863e155e9
>>> )
>>>
>>>
>>>
>>>
>>>
>>>
>>>
>>>
>>>
>>>
>>>
>>> IMPORTANT: The contents of this email and any attachments are
>>> confidential. They are intended for the named recipient(s) only. If you
>>> have received this email by mistake, please notify the sender immediately
>>> and do not disclose the contents to anyone or make copies thereof.
>>>
>>>
>>>
>>>
>>>
>>>
>>>
>>>
>>>
>>>
>>> Sent via Superhuman (
>>> https://llink.to/?u=https:%2F%2Fsprh.mn%2F%3Fvip%3Dfrederick%40optmyzr.com&e=04cc0c794f3aca719e831f9863e155e9
>>> )
>>>
>>>
>>>
>>> On Fri, Aug 07, 2020 at 2:46 AM, İrem Topal < irem@ zeo. org (
>>> https://llink.to/?u=mailto:irem%40zeo.org&e=04cc0c794f3aca719e831f9863e155e9
>>> ) > wrote:
>>>
>>>> Hi Frederick ,
>>>>
>>>>
>>>> This is İrem from Zeo Agency. First of all, I hope that you and your loved
>>>> ones are healthy and safe at this COVID-19 time.
>>>>
>>>>
>>>> As Zeo Agency, (
>>>> https://llink.to/?u=https:%2F%2Fzeo.org%2F&e=7bbf446a0396fba7ac0c3e02602b2d2d
>>>> ) we are proud organizers of Digitalzone (
>>>> https://llink.to/?u=https:%2F%2Fzeo.org%2Fdigitalzone%2Fen%2F&e=bab2f2ce57f37e0a8f35b5ca74df93a2
>>>> ) , which is the largest digital marketing conference of MENA & Eastern
>>>> Europe. This year, we are planning to organize Digitalzone on 26 and 27th
>>>> October.
>>>>
>>>>
>>>> Unfortunately, today the world is struggling with Covid-19 however, we are
>>>> organizing Digitalzone *online* for this year.
>>>>
>>>>
>>>> What do you think about being one of the speakers at Digitalzone’20? It
>>>> would mean a lot to your followers in the region and to us. For this year
>>>> w e'll mainly focus on SEO, PPC and Content Marketing subjects.
>>>>
>>>>
>>>> *More About Digitalzone*
>>>> In the previous years; Rand Fishkin, Wil Reynolds, Aleyda Solis, Gary
>>>> Illyes, Phil Nottingham and many more other valuable speakers made
>>>> speeches at Digitalzone stage in Istanbul.
>>>>
>>>>
>>>> For this year; Jamie Alberico, Juliette van Rooyen, Irina Nica, Hannah
>>>> Smith and Arianne Donoghue have already agreed to be with us.
>>>>
>>>>
>>>>
>>>> Please see our promo video of last year’s event here (
>>>> https://llink.to/?u=https:%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DhlC4GA1mgJ0&e=b96c109228902b44892445313979bd31
>>>> ).
>>>>
>>>>
>>>> Looking forward to announcing your name on the line-up, if you are
>>>> available for the last week of October.
>>>>
>>>>
>>>>
>>>>
>>>>
>>>>
>>>> Wish you healthy days!
>>>> Thank you for your time.
>>>>
>>>>
>>>> All the best,
>>>>
>>>>
>>>>
>>>>
>>>> İrem Topal Sales & Marketing Consultant *P:* +90 216 336 903 (
>>>> https://llink.to/?u=https:%2F%2Flinks99.mixmaxusercontent.com%2FGv3jaF6ecRJdE2J2Q%2Fl%2F2kaRX5EXg9iinRGvW%3FmessageId%3DxDTP6pePCunCWKSao%26rn%3DIibvl3chJXZw9EItAyTFNlI%26re%3DgInJ3bu8WZ6Bkbvl3chJXZw9mI%26sc%3Dfalse&e=03723c97dd9952dd869ec7e23e2b832a
>>>> ) 7 *P:* +44 20 3893 307 (
>>>> https://llink.to/?u=https:%2F%2Flinks92.mixmaxusercontent.com%2FGv3jaF6ecRJdE2J2Q%2Fl%2FWE94o5qtMOh4H9In2%3FmessageId%3DxDTP6pePCunCWKSao%26rn%3DIibvl3chJXZw9EItAyTFNlI%26re%3DgInJ3bu8WZ6Bkbvl3chJXZw9mI%26sc%3Dfalse&e=03723c97dd9952dd869ec7e23e2b832a
>>>> ) 8
>>>> *A:* Gaziosmanpaşa Sk. No:12, Osmanağa, Kadıköy İstanbul - TR *A:* 33 Queen
>>>> Street, Office: 17, EC4R 1AP London, UK Website (
>>>> https://llink.to/?u=https:%2F%2Flinks92.mixmaxusercontent.com%2FGv3jaF6ecRJdE2J2Q%2Fl%2Fld7IeWl1PjD0DP8Lw%3FmessageId%3DxDTP6pePCunCWKSao%26rn%3DIibvl3chJXZw9EItAyTFNlI%26re%3DgInJ3bu8WZ6Bkbvl3chJXZw9mI%26sc%3Dfalse&e=03723c97dd9952dd869ec7e23e2b832a
>>>> ) - YouTube (
>>>> https://llink.to/?u=https:%2F%2Flinks99.mixmaxusercontent.com%2FGv3jaF6ecRJdE2J2Q%2Fl%2F3xju3e2NwOhUBt2Vn%3FmessageId%3DxDTP6pePCunCWKSao%26rn%3DIibvl3chJXZw9EItAyTFNlI%26re%3DgInJ3bu8WZ6Bkbvl3chJXZw9mI%26sc%3Dfalse&e=03723c97dd9952dd869ec7e23e2b832a
>>>> ) - LinkedIn (
>>>> https://llink.to/?u=https:%2F%2Flinks93.mixmaxusercontent.com%2FGv3jaF6ecRJdE2J2Q%2Fl%2FfNi2HmU0Tc0na9jo9%3FmessageId%3DxDTP6pePCunCWKSao%26rn%3DIibvl3chJXZw9EItAyTFNlI%26re%3DgInJ3bu8WZ6Bkbvl3chJXZw9mI%26sc%3Dfalse&e=03723c97dd9952dd869ec7e23e2b832a
>>>> ) - Twitter (
>>>> https://llink.to/?u=https:%2F%2Flinks93.mixmaxusercontent.com%2FGv3jaF6ecRJdE2J2Q%2Fl%2FC289FBFhofytcuZWr%3FmessageId%3DxDTP6pePCunCWKSao%26rn%3DIibvl3chJXZw9EItAyTFNlI%26re%3DgInJ3bu8WZ6Bkbvl3chJXZw9mI%26sc%3Dfalse&e=03723c97dd9952dd869ec7e23e2b832a
>>>> )
>>>>
>>>>
>>>>
>>>>
>>>>
>>>>
>>>
>>>
>>>
>>>
>>
>>
>>
>
>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment