Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revisionBoth sides next revision
website_contact:running_projects [2018-01-09 17:20] devinwebsite_contact:running_projects [2018-03-07 13:52] – [Manual Message Submission] sven
Line 26: Line 26:
  
 It of course makes sense to review things before you start a project and submit the message automatically. It of course makes sense to review things before you start a project and submit the message automatically.
 +
 +===== Import =====
 +
 +The program is of course also able to import your URLs that you collected elsewhere. Just right click on a project and choose "Import URLs".
 +
 +But there is even a more advanced method to import your data. Instead of just importing plain URLs, you can also import CSV files. This will make it possible for you to use all of that content in the message itself.
 +
 +A CSV file usually looks as below:
 +<code>
 +"FirstName","LastName","Website","Rating"
 +"John","Doe","www.gsa-online.de","8"
 +"Jean","Doe","www.proxy-scraper.de","9"
 +...
 +</code>
 +
 +When having this imported, you can use macros like //%FirstName%//, //%LastName%//, //%Website%// and //%Rating%// as these are the header cells of the imported CSV file.
 +
 +A message for this project could e.g. look as follow:
 +<code>
 +Hello %FirstName%,
 +
 +I was on your website %Website% and would give it a rating %Rating%/10
 +when it comes to offpage SEO. I can help you to improve that.
 +
 +Please contact me by my email for details.
 +
 +Regards
 +XYZ
 +</code>
 +
 +Results for gsa-online.de would be:
 +<code>
 +Hello John,
 +
 +I was on your website www.gsa-online.de and would give it a rating 8</color>/10
 +when it comes to offpage SEO. I can help you to improve that.
 +
 +Please contact me by my email for details.
 +
 +Regards
 +XYZ
 +</code>