Fixes #3345 - Allow font colors in articles (not only in tables).

This commit is contained in:
Martin Edenhofer 2021-01-04 13:57:57 +01:00 committed by Thorsten Eckel
parent a03edd31a6
commit b85566c530
21 changed files with 368 additions and 108 deletions

View file

@ -1,6 +1,9 @@
# coffeelint: disable=no_unnecessary_double_quotes
class App.Utils
@mapTagAttributes:
'FONT': ['color']
'SPAN': ['style']
'DIV': ['style']
'TABLE': ['align', 'bgcolor', 'border', 'cellpadding', 'cellspacing', 'frame', 'rules', 'sortable', 'summary', 'width', 'style']
'TD': ['abbr', 'align', 'axis', 'colspan', 'headers', 'rowspan', 'valign', 'width', 'style']
'TH': ['abbr', 'align', 'axis', 'colspan', 'headers', 'rowspan', 'scope', 'sorted', 'valign', 'width', 'style']
@ -9,6 +12,12 @@ class App.Utils
'IMG': ['align', 'alt', 'border', 'height', 'src', 'srcset', 'width', 'style']
@mapCss:
'SPAN': [
'color',
]
'DIV': [
'color',
]
'TABLE': [
'background', 'background-color', 'color', 'font-size', 'vertical-align',
'margin', 'margin-top', 'margin-right', 'margin-bottom', 'margin-left',
@ -60,6 +69,111 @@ class App.Utils
'width', 'height',
]
@cssValuesBacklist:
'DIV': [
'color:white',
'color:black',
'color:#000',
'color:#000000',
'color:#fff',
'color:#ffffff',
'color:rgb(0,0,0)',
'color:#585856', # use in UI, ignore it
'color:rgb(88, 88, 86)' # use in UI, ignore it
'color:#b3b3b3' # use in UI, ignore it
'color:rgb(34, 34, 34)' # use in UI, ignore it
],
'SPAN': [
'color:white',
'color:black',
'color:#000',
'color:#000000',
'color:#fff',
'color:#ffffff',
'color:rgb(0,0,0)',
'color:#585856', # use in UI, ignore it
'color:rgb(88, 88, 86)' # use in UI, ignore it
'color:#b3b3b3' # use in UI, ignore it
'color:rgb(34, 34, 34)' # use in UI, ignore it
],
'TABLE': [
'font-size:0',
'font-size:0px',
'font-size:0em',
'font-size:0%',
'font-size:1px',
'font-size:1em',
'font-size:1%',
'font-size:2',
'font-size:2px',
'font-size:2em',
'font-size:2%',
'font-size:3',
'font-size:3px',
'font-size:3em',
'font-size:3%',
'display:none',
'visibility:hidden',
],
'TH': [
'font-size:0',
'font-size:0px',
'font-size:0em',
'font-size:0%',
'font-size:1px',
'font-size:1em',
'font-size:1%',
'font-size:2',
'font-size:2px',
'font-size:2em',
'font-size:2%',
'font-size:3',
'font-size:3px',
'font-size:3em',
'font-size:3%',
'display:none',
'visibility:hidden',
],
'TR': [
'font-size:0',
'font-size:0px',
'font-size:0em',
'font-size:0%',
'font-size:1',
'font-size:1px',
'font-size:1em',
'font-size:1%',
'font-size:2',
'font-size:2px',
'font-size:2em',
'font-size:2%',
'font-size:3',
'font-size:3px',
'font-size:3em',
'font-size:3%',
'display:none',
'visibility:hidden',
],
'TD': [
'font-size:0',
'font-size:0px',
'font-size:0em',
'font-size:0%',
'font-size:1px',
'font-size:1em',
'font-size:1%',
'font-size:2',
'font-size:2px',
'font-size:2em',
'font-size:2%',
'font-size:3',
'font-size:3px',
'font-size:3em',
'font-size:3%',
'display:none',
'visibility:hidden',
]
# textCleand = App.Utils.textCleanup(rawText)
@textCleanup: (ascii) ->
$.trim( ascii )
@ -269,7 +383,7 @@ class App.Utils
@_stripDoubleDomainAnchors(html)
# remove tags, keep content
html.find('font, small, time, form, label').replaceWith( ->
html.find('small, time, form, label').replaceWith( ->
$(@).contents()
)
@ -293,7 +407,7 @@ class App.Utils
)
# remove tags & content
html.find('font, svg, input, select, button, style, applet, embed, noframes, canvas, script, frame, iframe, meta, link, title, head, fieldset').remove()
html.find('svg, input, select, button, style, applet, embed, noframes, canvas, script, frame, iframe, meta, link, title, head, fieldset').remove()
# remove style and class
@_cleanAttributes(html)
@ -341,7 +455,7 @@ class App.Utils
prop = local_pear.split(':')
if prop[0] && prop[0].trim
key = prop[0].trim()
if _.contains(@mapCss[element.nodeName], key)
if !(@cssValuesBacklist[element.nodeName] && _.contains(@cssValuesBacklist[element.nodeName], local_pear.toLowerCase())) && _.contains(@mapCss[element.nodeName], key)
styleNew += "#{local_pear};"
if styleNew isnt ''
element.setAttribute('style', styleNew)

View file

@ -44,6 +44,7 @@ Rails.application.config.html_sanitizer_attributes_whitelist = {
'ul' => %w[type],
'q' => %w[cite],
'span' => %w[style],
'div' => %w[style],
'time' => %w[datetime pubdate],
}
@ -57,6 +58,9 @@ Rails.application.config.html_sanitizer_css_properties_whitelist = {
'span' => %w[
color
],
'div' => %w[
color
],
'table' => %w[
background background-color color font-size vertical-align
margin margin-top margin-right margin-bottom margin-left
@ -104,11 +108,40 @@ Rails.application.config.html_sanitizer_css_properties_whitelist = {
}
Rails.application.config.html_sanitizer_css_values_backlist = {
'div' => [
'color:white',
'color:black',
'color:#000',
'color:#000000',
'color:#fff',
'color:#ffffff',
'color:rgb(0,0,0)',
],
'span' => [
'color:white',
'color:black',
'color:#000',
'color:#000000',
'color:#fff',
'color:#ffffff',
'color:rgb(0,0,0)',
],
'table' => [
'font-size:0',
'font-size:0px',
'font-size:0em',
'font-size:0%',
'font-size:1px',
'font-size:1em',
'font-size:1%',
'font-size:2',
'font-size:2px',
'font-size:2em',
'font-size:2%',
'font-size:3',
'font-size:3px',
'font-size:3em',
'font-size:3%',
'display:none',
'visibility:hidden',
],
@ -117,6 +150,17 @@ Rails.application.config.html_sanitizer_css_values_backlist = {
'font-size:0px',
'font-size:0em',
'font-size:0%',
'font-size:1px',
'font-size:1em',
'font-size:1%',
'font-size:2',
'font-size:2px',
'font-size:2em',
'font-size:2%',
'font-size:3',
'font-size:3px',
'font-size:3em',
'font-size:3%',
'display:none',
'visibility:hidden',
],
@ -125,6 +169,18 @@ Rails.application.config.html_sanitizer_css_values_backlist = {
'font-size:0px',
'font-size:0em',
'font-size:0%',
'font-size:1',
'font-size:1px',
'font-size:1em',
'font-size:1%',
'font-size:2',
'font-size:2px',
'font-size:2em',
'font-size:2%',
'font-size:3',
'font-size:3px',
'font-size:3em',
'font-size:3%',
'display:none',
'visibility:hidden',
],
@ -133,6 +189,17 @@ Rails.application.config.html_sanitizer_css_values_backlist = {
'font-size:0px',
'font-size:0em',
'font-size:0%',
'font-size:1px',
'font-size:1em',
'font-size:1%',
'font-size:2',
'font-size:2px',
'font-size:2em',
'font-size:2%',
'font-size:3',
'font-size:3px',
'font-size:3em',
'font-size:3%',
'display:none',
'visibility:hidden',
],

View file

@ -267,6 +267,8 @@ cleanup html string:
end
next if hit && node.keys.count.positive?
next if node.name == 'span' && node['style'].present?
node.replace cleanup_replace_tags(node.children.to_s)
Loofah::Scrubber::STOP
end
@ -289,19 +291,19 @@ cleanup html string:
end
# remove empty childs
if node.content.blank? && remove_empty_nodes.include?(node.name) && node.children.size == 1 && remove_empty_nodes.include?(node.children.first.name)
if node.content.blank? && remove_empty_nodes.include?(node.name) && node.children.size == 1 && remove_empty_nodes.include?(node.children.first.name) && node['style'].blank? && node.children.first['style'].blank?
node.replace node.children.to_s
Loofah::Scrubber::STOP
end
# remove empty childs
if remove_empty_nodes.include?(node.name) && node.children.size == 1 && remove_empty_nodes.include?(node.children.first.name) && node.children.first.content == node.content
if remove_empty_nodes.include?(node.name) && node.children.size == 1 && remove_empty_nodes.include?(node.children.first.name) && node.children.first.content == node.content && node['style'].blank? && node.children.first['style'].blank?
node.replace node.children.to_s
Loofah::Scrubber::STOP
end
# remove node if empty and parent was already a remove node
if node.content.blank? && remove_empty_nodes.include?(node.name) && node.parent && node.children.size.zero? && remove_empty_nodes.include?(node.parent.name)
if (node.content.blank? || node.content.strip.blank? ) && remove_empty_nodes.include?(node.name) && node.parent && node.children.size.zero? && remove_empty_nodes.include?(node.parent.name)
node.remove
Loofah::Scrubber::STOP
end

View file

@ -649,7 +649,7 @@ test("htmlCleanup", function() {
source = "<div><font size=\"3\" color=\"red\">This is some text!</font><svg><use xlink:href=\"assets/images/icons.svg#icon-status\"></svg></div>"
//should = "<div>This is some text!</div>"
should = "This is some text!"
should = "<font color=\"red\">This is some text!</font>"
result = App.Utils.htmlCleanup($(source))
equal(result.html(), should, source)
@ -671,7 +671,7 @@ test("htmlCleanup", function() {
equal(result.html().trim(), should, source)
source = "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0 Transitional//EN\">\n<html>\n<head>\n <meta http-equiv=\"content-type\" content=\"text/html; charset=utf-8\"/>\n <title></title>\n <meta name=\"generator\" content=\"LibreOffice 4.4.7.2 (MacOSX)\"/>\n <style type=\"text/css\">\n @page { margin: 0.79in }\n p { margin-bottom: 0.1in; line-height: 120% }\n a:link { so-language: zxx }\n </style>\n</head>\n<body lang=\"en-US\" dir=\"ltr\">\n<p align=\"center\" style=\"margin-bottom: 0in; line-height: 100%\">1.\nGehe a<b>uf </b><b>https://www.pfe</b>rdiathek.ge</p>\n<p align=\"center\" style=\"margin-bottom: 0in; line-height: 100%\"><br/>\n\n</p>\n<p align=\"center\" style=\"margin-bottom: 0in; line-height: 100%\">2.\nMel<font color=\"#800000\">de Dich mit folgende</font> Zugangsdaten an:</p>\n<p align=\"center\" style=\"margin-bottom: 0in; line-height: 100%\">Benutzer:\nme@xxx.net</p>\n<p align=\"center\" style=\"margin-bottom: 0in; line-height: 100%\">Passwort:\nxxx.</p>\n</body>\n</html>"
should = "\n\n\n \n \n \n \n\n\n<p>1.\nGehe a<b>uf </b><b>https://www.pfe</b>rdiathek.ge</p>\n<p><br>\n\n</p>\n<p>2.\nMelde Dich mit folgende Zugangsdaten an:</p>\n<p>Benutzer:\nme@xxx.net</p>\n<p>Passwort:\nxxx.</p>\n\n"
should = "\n\n\n \n \n \n \n\n\n<p>1.\nGehe a<b>uf </b><b>https://www.pfe</b>rdiathek.ge</p>\n<p><br>\n\n</p>\n<p>2.\nMel<font color=\"#800000\">de Dich mit folgende</font> Zugangsdaten an:</p>\n<p>Benutzer:\nme@xxx.net</p>\n<p>Passwort:\nxxx.</p>\n\n"
result = App.Utils.htmlCleanup(source)
equal(result.html(), should, source)

View file

@ -659,6 +659,22 @@ RSpec.describe String do
expect('<span></span>'.html2html_strict).to eq('')
end
it 'keeps style with color in <span>' do
expect(<<~HTML.chomp.html2html_strict).to eq(<<~TEXT.chomp)
<span style="color: red; bgcolor: red">Hello Martin,</span>
HTML
<span style="color: red;">Hello Martin,</span>
TEXT
end
it 'remove style=#ffffff with color in <span>' do
expect(<<~HTML.chomp.html2html_strict).to eq(<<~TEXT.chomp)
<span style="color: #ffffff; bgcolor: red">Hello Martin,</span>
HTML
Hello Martin,
TEXT
end
it 'strips <span> tags, id/class attrs, and <o:*> (MS Office) tags' do
expect(<<~HTML.chomp.html2html_strict).to eq(<<~TEXT.chomp)
<div id="123" class="WordSection1">
@ -671,7 +687,7 @@ RSpec.describe String do
<div>
HTML
<div>
<p>Guten Morgen, Frau Koppenhagen,</p><p>&nbsp;</p><p>vielen Dank für die Reservierung. Dabei allerdings die Sprache (Niederländisch) nicht erwähnt. Können Sie bitte dieses in Ihrer Reservierung vormerken?</p><p>&nbsp;</p><p>Nochmals vielen Dank und herzliche Grüße</p></div>
<p><span style="color:#1f497d;">Guten Morgen, Frau Koppenhagen,</span></p><p><span style="color:#1f497d;"><p>&nbsp;</p></span></p><p><span style="color:#1f497d;">vielen Dank für die Reservierung. Dabei allerdings die Sprache (Niederländisch) nicht erwähnt. Können Sie bitte dieses in Ihrer Reservierung vormerken?</span></p><p><span style="color:#1f497d;"><p>&nbsp;</p></span></p><p><span style="color:#1f497d;">Nochmals vielen Dank und herzliche Grüße </span></p></div>
TEXT
end
@ -894,6 +910,22 @@ RSpec.describe String do
TEXT
end
it 'keeps style with color in <div>' do
expect(<<~HTML.chomp.html2html_strict).to eq(<<~TEXT.chomp)
<div style="color: red; bgcolor: red">Hello Martin,</div>
HTML
<div style="color: red;">Hello Martin,</div>
TEXT
end
it 'remove style=#ffffff with color in <div>' do
expect(<<~HTML.chomp.html2html_strict).to eq(<<~TEXT.chomp)
<div style="color: #ffffff; bgcolor: red">Hello Martin,</div>
HTML
<div>Hello Martin,</div>
TEXT
end
it 'rearranges whitespace in nested <div>' do
expect(<<~HTML.chomp.html2html_strict).to eq(<<~TEXT.chomp)
<div lang="DE"><div><div>Hello Martin,</div> </div></div>
@ -1003,7 +1035,7 @@ RSpec.describe String do
expect(<<~HTML.chomp.html2html_strict).to eq(<<~TEXT.chomp)
web <a href="www.example.com"><span style="color:blue">www.example.com</span></a>
HTML
web <a href="http://www.example.com" rel="nofollow noreferrer noopener" target="_blank">www.example.com</a>
web <a href="http://www.example.com" rel="nofollow noreferrer noopener" target="_blank"><span style="color:blue;">www.example.com</span></a>
TEXT
end
@ -1097,7 +1129,7 @@ RSpec.describe String do
expect(<<~HTML.chomp.html2html_strict).to eq(<<~TEXT.chomp)
<a name="_MailEndCompose"><span style="font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;color:#44546A">Hello Mr Smith,<o:p></o:p></span></a>
HTML
Hello Mr Smith,
<span style="color:#44546a;">Hello Mr Smith,</span>
TEXT
end
@ -1114,7 +1146,7 @@ RSpec.describe String do
expect(<<~HTML.chomp.html2html_strict).to eq(<<~TEXT.chomp)
<a href="http://facebook.de/examplesrbog"><span lang="EN-US" style='color:blue'>http://facebook.de/examplesrbog</span></a>
HTML
<a href="http://facebook.de/examplesrbog" rel="nofollow noreferrer noopener" target="_blank">http://facebook.de/examplesrbog</a>
<a href="http://facebook.de/examplesrbog" rel="nofollow noreferrer noopener" target="_blank"><span lang="EN-US" style="color:blue;">http://facebook.de/examplesrbog</span></a>
TEXT
end
@ -1123,7 +1155,7 @@ RSpec.describe String do
<span style="font-size:10.0pt;font-family:&quot;Cambria&quot;,serif;color:#1F497D;mso-fareast-language:DE">web&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<a href="http://www.example.com"><span style="color:blue">www.example.com</span></a><o:p></o:p></span>
HTML
web <a href="http://www.example.com" rel="nofollow noreferrer noopener" target="_blank">www.example.com</a>
<span style="color:#1f497d;">web <a href="http://www.example.com" rel="nofollow noreferrer noopener" target="_blank"><span style="color:blue;">www.example.com</span></a></span>
TEXT
end
end
@ -1220,7 +1252,7 @@ RSpec.describe String do
expect(<<~HTML.chomp.html2html_strict).to eq(<<~TEXT.chomp)
<p class="MsoNormal"><a href="http://www.example.com/"><span style="color:blue;text-decoration:none"><img border="0" width="30" height="30" id="_x0000_i1030" src="cid:image001.png@01D172FC.F323CDB0"></span></a><o:p></o:p></p>
HTML
<p><a href="http://www.example.com/" rel="nofollow noreferrer noopener" target="_blank" title="http://www.example.com/"><img border="0" src="cid:image001.png@01D172FC.F323CDB0" style="width:30px;height:30px;"></a></p>
<p><a href="http://www.example.com/" rel="nofollow noreferrer noopener" target="_blank" title="http://www.example.com/"><span style="color:blue;"><img border="0" src="cid:image001.png@01D172FC.F323CDB0" style="width:30px;height:30px;"></span></a></p>
TEXT
end
end
@ -1288,7 +1320,8 @@ RSpec.describe String do
<p class="MsoNormal"><span style="font-size:8.0pt;color:#1F497D">Geschäftsführer Vor Nach, VorUndZu Nach&nbsp;&nbsp;&nbsp;&nbsp; -&nbsp;&nbsp;&nbsp;&nbsp; Amtsgericht Dort HRB 12345&nbsp;&nbsp;&nbsp; -&nbsp;&nbsp;&nbsp; Ein Unternehmer der ABC Gruppe<o:p></o:p></span></p>
HTML
<div>
<p>Guten Morgen, Frau ABC,</p><p>&nbsp;</p><p>vielen Dank für die Reservierung. Dabei allerdings die Sprache (Niederländisch) nicht erwähnt. Können Sie bitte dieses in Ihrer Reservierung vormerken?</p><p>&nbsp;</p><p>Nochmals vielen Dank und herzliche Grüße</p><div> <p>&nbsp;</p><p><b>Anna Smith</b></p><p><b>art abc SEV GmbH</b></p><p><b>art abc TRAV</b></p><p>Marktstätte 123</p><p>123456 Dorten</p><p>T: +49 (0) 12345/1234560-1</p><p>T: +49 (0) 12345/1234560-0</p><p>F: +49 (0) 12345/1234560-2</p><p>annad@example.com</p><p><a href="http://www.example.com/" rel="nofollow noreferrer noopener" target="_blank">www.example.com</a> <a href="http://www.ABC.com/" rel="nofollow noreferrer noopener" target="_blank">www.ABC.com</a></p><p>Geschäftsführer Vor Nach, VorUndZu Nach - Amtsgericht Dort HRB 12345 - Ein Unternehmer der ABC Gruppe</p></div></div>
<p><span style="color:#1f497d;">Guten Morgen, Frau ABC,</span></p><p><span style="color:#1f497d;"><p>&nbsp;</p></span></p><p><span style="color:#1f497d;">vielen Dank für die Reservierung. Dabei allerdings die Sprache (Niederländisch) nicht erwähnt. Können Sie bitte dieses in Ihrer Reservierung vormerken?</span></p><p><span style="color:#1f497d;"><p>&nbsp;</p></span></p><p><span style="color:#1f497d;">Nochmals vielen Dank und herzliche Grüße </span></p><div>
<p><b><span style="color:#1f497d;"><p>&nbsp;</p></span></b></p><p><b><span style="color:#1f497d;">Anna Smith</span></b></p><p><b><span style="color:#1f497d;">art abc SEV GmbH</span></b></p><p><b><span style="color:#1f497d;">art abc TRAV</span></b></p><p><span style="color:#1f497d;">Marktstätte 123</span></p><p><span style="color:#1f497d;">123456 Dorten</span></p><p><span style="color:#1f497d;">T: +49 (0) 12345/1234560-1</span></p><p><span style="color:#1f497d;">T: +49 (0) 12345/1234560-0</span></p><p><span style="color:#1f497d;">F: +49 (0) 12345/1234560-2</span></p><p>annad@example.com</p><p><a href="http://www.example.com/" rel="nofollow noreferrer noopener" target="_blank">www.example.com</a><span style="color:#1f497d;"> </span><a href="http://www.ABC.com/" rel="nofollow noreferrer noopener" target="_blank">www.ABC.com</a></p><p><span style="color:#1f497d;">Geschäftsführer Vor Nach, VorUndZu Nach - Amtsgericht Dort HRB 12345 - Ein Unternehmer der ABC Gruppe</span></p></div></div>
TEXT
end
@ -1309,12 +1342,12 @@ RSpec.describe String do
<p class="MsoNormal"><span style="font-size:10.0pt;font-family:&quot;Segoe UI&quot;,&quot;sans-serif&quot;;color:#1F497D">&nbsp;</span><o:p></o:p></p>
<p class="MsoNormal">Guten Morgen Frau Epalza,<o:p></o:p></p>
HTML
<p>&nbsp;</p><div>
<p><span style="color:#1f497d;"><p>&nbsp;</p></span></p><div>
<div>
<span class="js-signatureMarker"></span><p><b>Von:</b> Besucherbüro, MKuk [besucherbuero@example.com] <br>
<b>Gesendet:</b> Freitag, 16. Dezember 2016 08:05<br>
<b>An:</b> 'Amaia Epalza'<br>
<b>Betreff:</b> AW: Gruppe vtb Kultuur // 28.06.2017</p></div></div><p>&nbsp;</p><p><b>Reservierungsbestätigung Führung Skulptur-Projekte 2017 am </b></p><p>&nbsp;</p><p>Guten Morgen Frau Epalza,</p>
<b>Betreff:</b> AW: Gruppe vtb Kultuur // 28.06.2017</p></div></div><p>&nbsp;</p><p><b><span style="color:#1f497d;">Reservierungsbestätigung Führung Skulptur-Projekte 2017 am </span></b></p><p></p><p><span style="color:#1f497d;"> </span></p><p></p><p>Guten Morgen Frau Epalza,</p>
TEXT
end
@ -1332,7 +1365,7 @@ RSpec.describe String do
<b>bitte</b> noch meine Testphase verlängern?<o:p></o:p></span></p>
<p class="MsoNormal"><span style="font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:#1F497D;mso-fareast-language:EN-US"><o:p>&nbsp;</o:p></span></p>
HTML
<p>oh jeee Zauberwort vergessen ;-) Können Sie mir <b>bitte</b> noch meine Testphase verlängern?</p><p>&nbsp;</p>
<p><span style="color:#1f497d;">oh jeee Zauberwort vergessen ;-) Können Sie mir <b>bitte</b> noch meine Testphase verlängern?</span></p><p><span style="color:#1f497d;"><p>&nbsp;</p></span></p>
TEXT
end
@ -1351,9 +1384,9 @@ RSpec.describe String do
<tr>
<td valign="bottom" style=" border-style: none none none solid; border-left-width: 1pt; border-left-color: windowtext; padding: 0cm 5.4pt;"><p>&nbsp;</p></td>
<td valign="bottom" style=" padding: 0cm 5.4pt;"><div>20-29</div></td>
<td valign="bottom" style=" background-color: rgb(255, 199, 206); padding: 0cm 5.4pt;"><span style="color: rgb(156, 0, 6);">200</span></td>
<td valign="bottom" style=" background-color: rgb(255, 199, 206); padding: 0cm 5.4pt;"><span style="color: rgb(156, 0, 6);">-1</span></td>
<td valign="bottom" style=" border-style: none solid none none; border-right-width: 1pt; border-right-color: windowtext; background-color: rgb(255, 199, 206); padding: 0cm 5.4pt;"><span style="color: rgb(156, 0, 6);">201</span></td>
<td valign="bottom" style=" background-color: rgb(255, 199, 206); padding: 0cm 5.4pt;"><div><span style="color: rgb(156, 0, 6);">200</span></div></td>
<td valign="bottom" style=" background-color: rgb(255, 199, 206); padding: 0cm 5.4pt;"><div><span style="color: rgb(156, 0, 6);">-1</span></div></td>
<td valign="bottom" style=" border-style: none solid none none; border-right-width: 1pt; border-right-color: windowtext; background-color: rgb(255, 199, 206); padding: 0cm 5.4pt;"><div><span style="color: rgb(156, 0, 6);">201</span></div></td>
<td valign="bottom" style=" padding: 0cm 5.4pt;"></td>
<td valign="bottom" style=" padding: 0cm 5.4pt;"></td>
<td valign="bottom" style=" border-style: none solid solid; border-left-width: 1pt; border-left-color: windowtext; border-bottom-width: 1pt; border-bottom-color: gray; border-right-width: 1pt; border-right-color: gray; background-color: rgb(242, 242, 242); padding: 0cm 5.4pt;"><div>
@ -1368,9 +1401,10 @@ RSpec.describe String do
it 'handles sample input 11' do
expect(<<~HTML.chomp.html2html_strict).to eq(<<~TEXT.chomp)
<div style="line-height:1.7;color:#000000;font-size:14px;font-family:Arial"><div style="line-height:1.7;color:#000000;font-size:14px;font-family:Arial"><div style="line-height:1.7;color:#000000;font-size:14px;font-family:Arial"><div style="line-height:1.7;color:#000000;font-size:14px;font-family:Arial"><div style="line-height:1.7;color:#000000;font-size:14px;font-family:Arial"><div style="line-height:1.7;color:#000000;font-size:14px;font-family:Arial"><div style="line-height:1.7;color:#000000;font-size:14px;font-family:Arial"><div style="line-height:1.7;color:#000000;font-size:14px;font-family:Arial"><div style="line-height:1.7;color:#000000;font-size:14px;font-family:Arial"><div style="line-height:1.7;color:#000000;font-size:14px;font-family:Arial"><div style="line-height:1.7;color:#000000;font-size:14px;font-family:Arial"><div style="line-height:1.7;color:#000000;font-size:14px;font-family:Arial"><div style="line-height:1.7;color:#000000;font-size:14px;font-family:Arial"><div style="line-height:1.7;color:#000000;font-size:14px;font-family:Arial"><div style="line-height:1.7;color:#000000;font-size:14px;font-family:Arial"><div style="line-height:1.7;color:#000000;font-size:14px;font-family:Arial"><div style="line-height:1.7;color:#000000;font-size:14px;font-family:Arial"><div style="line-height:1.7;color:#000000;font-size:14px;font-family:Arial"><div style="line-height:1.7;color:#000000;font-size:14px;font-family:Arial"><div style="line-height:1.7;color:#000000;font-size:14px;font-family:Arial"><div style="line-height:1.7;color:#000000;font-size:14px;font-family:Arial"><div>Dear Bob<span style="line-height: 23.8px;">:</span><span style="color: rgb(255, 255, 255); line-height: 1.7;">Mr/Mrs</span></div><div><br></div><div><span style="line-height: 1.7;">We&nbsp;are&nbsp;one&nbsp;of&nbsp;the&nbsp;leading&nbsp;manufacturer&nbsp;and&nbsp;supplier&nbsp;of&nbsp;</span>conduits and cars since 3000.</div><div><br></div><div>Could you inform me the specification you need?</div><div><br></div><div>May I sent you our products catalogues for your reference?</div><div><br></div><div><img src="cid:5cb2783c$1$15ae9b384c8$Coremail$zhanabcdzhao$example.com" orgwidth="1101" orgheight="637" data-image="1" style="width: 722.7px; height: 418px; border: none;"></div><div>Best regards!</div><div><br></div><div><b style="line-height: 1.7;"><i><u><span lang="EL" style="font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:#17365D;\nmso-ansi-language:EL">Welcome to our booth B11/1 Hall 13 during SOMEWHERE\n9999.</span></u></i></b></div><div style="position:relative;zoom:1"><div>Bob Smith</div><div><div>Exp. &amp; Imp.</div><div>Town Example Electric Co., Ltd.</div><div>Tel: 0000-11-12345678 (Ext-220) &nbsp;Fax: 0000-11-12345678&nbsp;</div><div>Room1234, NO. 638, Smith Road, Town, 200000, Somewhere</div><div>Web: www.example.com</div></div><div style="clear:both"></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div>
<div style="line-height:1.7;color:#000000;font-size:14px;font-family:Arial"><div style="line-height:1.7;color:#000000;font-size:14px;font-family:Arial"><div style="line-height:1.7;color:#000000;font-size:14px;font-family:Arial"><div style="line-height:1.7;color:#000000;font-size:14px;font-family:Arial"><div style="line-height:1.7;color:#000000;font-size:14px;font-family:Arial"><div style="line-height:1.7;color:#000000;font-size:14px;font-family:Arial"><div style="line-height:1.7;color:#000000;font-size:14px;font-family:Arial"><div style="line-height:1.7;color:#000000;font-size:14px;font-family:Arial"><div style="line-height:1.7;color:#000000;font-size:14px;font-family:Arial"><div style="line-height:1.7;color:#000000;font-size:14px;font-family:Arial"><div style="line-height:1.7;color:#000000;font-size:14px;font-family:Arial"><div style="line-height:1.7;color:#000000;font-size:14px;font-family:Arial"><div style="line-height:1.7;color:#000000;font-size:14px;font-family:Arial"><div style="line-height:1.7;color:#000000;font-size:14px;font-family:Arial"><div style="line-height:1.7;color:#000000;font-size:14px;font-family:Arial"><div style="line-height:1.7;color:#000000;font-size:14px;font-family:Arial"><div style="line-height:1.7;color:#000000;font-size:14px;font-family:Arial"><div style="line-height:1.7;color:#000000;font-size:14px;font-family:Arial"><div style="line-height:1.7;color:#000000;font-size:14px;font-family:Arial"><div style="line-height:1.7;color:#000000;font-size:14px;font-family:Arial"><div style="line-height:1.7;color:#000000;font-size:14px;font-family:Arial"><div>Dear Bob<span style="line-height: 23.8px;">:</span><span style="color: rgb(255, 255, 255); line-height: 1.7;">Mr/Mrs</span></div><div><br></div><div><span style="line-height: 1.7;">We&nbsp;are&nbsp;one&nbsp;of&nbsp;the&nbsp;leading&nbsp;manufacturer&nbsp;and&nbsp;supplier&nbsp;of&nbsp;</span>conduits and cars since 3000.</div><div><br></div><div>Could you inform me the specification you need?</div><div><br></div><div>May I sent you our products catalogues for your reference?</div><div><br></div><div><img src="cid:5cb2783c$1$15ae9b384c8$Coremail$zhanabcdzhao$example.com" orgwidth="1101" orgheight="637" data-image="1" style="width: 722.7px; height: 418px; border: none;"></div><div>Best regards!</div><div><br></div><div><b style="line-height: 1.7;"><i><u><span lang="EL" style="font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:#17365D;\nmso-ansi-language:EL">Welcome to our booth B11/1 Hall 13 during SOMEWHERE\n9999.</span></u></i></b></div><div style="position:relative;zoom:1"><div>Bob Smith</div><div><div>Exp. &amp; Imp.</div><div>Town Example Electric Co., Ltd.</div><div>Tel: 0000-11-12345678 (Ext-220) &nbsp;Fax: 0000-11-12345678&nbsp;</div><div><span style="color:#17365d;">Room1234, NO. 638, Smith Road, Town, 200000, Somewhere</span></div><div>Web: www.example.com</div></div><div style="clear:both"></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div>
HTML
<div>\n<div>Dear Bob:Mr/Mrs</div><div>&nbsp;</div><div>We are one of the leading manufacturer and supplier of conduits and cars since 3000.</div><div>&nbsp;</div><div>Could you inform me the specification you need?</div><div>&nbsp;</div><div>May I sent you our products catalogues for your reference?</div><div>&nbsp;</div><div><img src="cid:5cb2783c%241%2415ae9b384c8%24Coremail%24zhanabcdzhao%24example.com" style="width: 722.7px; height: 418px;"></div><div>Best regards!</div><div>&nbsp;</div><div><b><i><u>Welcome to our booth B11/1 Hall 13 during SOMEWHERE 9999.</u></i></b></div><div>\n<div>Bob Smith</div><div>\n<div>Exp. &amp; Imp.</div><div>Town Example Electric Co., Ltd.</div><div>Tel: 0000-11-12345678 (Ext-220) Fax: 0000-11-12345678</div><div>Room1234, NO. 638, Smith Road, Town, 200000, Somewhere</div><div>Web: www.example.com</div></div></div></div>
<div>\n<div>Dear Bob:<span style="color: rgb(255, 255, 255);">Mr/Mrs</span>
</div><div>&nbsp;</div><div>We are one of the leading manufacturer and supplier of conduits and cars since 3000.</div><div>&nbsp;</div><div>Could you inform me the specification you need?</div><div>&nbsp;</div><div>May I sent you our products catalogues for your reference?</div><div>&nbsp;</div><div><img src="cid:5cb2783c%241%2415ae9b384c8%24Coremail%24zhanabcdzhao%24example.com" style="width: 722.7px; height: 418px;"></div><div>Best regards!</div><div>&nbsp;</div><div><b><i><u><span lang="EL" style="color:#17365d;">Welcome to our booth B11/1 Hall 13 during SOMEWHERE 9999.</span></u></i></b></div><div>\n<div>Bob Smith</div><div>\n<div>Exp. &amp; Imp.</div><div>Town Example Electric Co., Ltd.</div><div>Tel: 0000-11-12345678 (Ext-220) Fax: 0000-11-12345678</div><div><span style="color:#17365d;">Room1234, NO. 638, Smith Road, Town, 200000, Somewhere</span></div><div>Web: www.example.com</div></div></div></div>
TEXT
end

View file

@ -107,9 +107,9 @@ RSpec.describe Trigger, type: :model do
<p>Geschäftsführer der example Straubing-Bogen</p>
<p>Klosterhof 1 | 94327 Bogen-Oberalteich</p>
<p>Tel: 09422-505601 | Fax: 09422-505620</p>
<p>Internet: <a href="http://example-straubing-bogen.de/" rel="nofollow noreferrer noopener" target="_blank">http://example-straubing-bogen.de</a></p>
<p>Facebook: <a href="http://facebook.de/examplesrbog" rel="nofollow noreferrer noopener" target="_blank">http://facebook.de/examplesrbog</a></p>
<p><b><img border="0" src="cid:image001.jpg@01CDB132.D8A510F0" alt="Beschreibung: Beschreibung: efqmLogo" style="width:60px;height:19px;"></b><b> - European Foundation für Quality Management</b></p>
<p>Internet: <a href="http://example-straubing-bogen.de/" rel="nofollow noreferrer noopener" target="_blank"><span style="color:blue;">http://example-straubing-bogen.de</span></a></p>
<p>Facebook: <a href="http://facebook.de/examplesrbog" rel="nofollow noreferrer noopener" target="_blank"><span lang="EN-US" style="color:blue;">http://facebook.de/examplesrbog</span></a></p>
<p><b><span style="color:navy;"><img border="0" src="cid:image001.jpg@01CDB132.D8A510F0" alt="Beschreibung: Beschreibung: efqmLogo" style="width:60px;height:19px;"></span></b><b><span lang="EN-US" style="color:navy;"> - European Foundation für Quality Management</span></b></p>
<p> </p>
</div>&gt;/snip&lt;
RAW

View file

@ -2,11 +2,12 @@
from: '"Günther John | Example GmbH" <k.guenther@example.com>'
from_email: k.guenther@example.com
from_display_name: Günther John | Example GmbH
to: Fritz Bauer <me@example.com>
subject: Ticket Templates
content_type: text/html
body: |-
<div>
<p>Hallo Martin,</p><p>&nbsp;</p><p>ich möchte mich gern für den Beta-Test für die Ticket Templates unter XXXX 2.4 anmelden.</p><p>&nbsp;</p><div> <p>&nbsp;</p><p>Mit freundlichen Grüßen</p><p>John Günther</p><p>&nbsp;</p><p><a href="http://www.GeoFachDatenServer.de" rel="nofollow noreferrer noopener" target="_blank" title="http://www.GeoFachDatenServer.de">example.com</a> profitieren Sie vom umfangreichen Daten-Netzwerk </p><p>&nbsp;</p><p>_ __ ___ ____________________________ ___ __ _</p><p>&nbsp;</p><p>Example GmbH</p><p>Some What</p><p>&nbsp;</p><p>Sitz: Someware-Straße 9, XXXXX Someware</p><p>&nbsp;</p><p>M: +49 (0) XXX XX XX 70</p><p>T: +49 (0) XXX XX XX 22</p><p>F: +49 (0) XXX XX XX 11</p><p>W: www.example.de</p><p>&nbsp;</p><p>Geschäftsführer: John Smith</p><p>HRB XXXXXX AG Someware</p><p>St.-Nr.: 112/107/05858</p><p>&nbsp;</p><p>ISO 9001:2008 Zertifiziert -Qualitätsstandard mit Zukunft</p><p>_ __ ___ ____________________________ ___ __ _</p><p>&nbsp;</p><p>Diese Information ist ausschließlich für den Adressaten bestimmt und kann vertrauliche oder gesetzlich geschützte Informationen enthalten. Wenn Sie nicht der bestimmungsgemäße Adressat sind, unterrichten Sie bitte den Absender und vernichten Sie diese Mail. Anderen als dem bestimmungsgemäßen Adressaten ist es untersagt, diese E-Mail zu lesen, zu speichern, weiterzuleiten oder ihren Inhalt auf welche Weise auch immer zu verwenden.</p></div><p>&nbsp;</p><div>
<p><span style="color:#1f497d;">Hallo Martin,</span></p><p><span style="color:#1f497d;"><p>&nbsp;</p></span></p><p><span style="color:#1f497d;">ich möchte mich gern für den Beta-Test für die Ticket Templates unter XXXX 2.4 anmelden.</span></p><p><span style="color:#1f497d;"><p>&nbsp;</p></span></p><div>
<p><span style="color:#1f497d;"><p>&nbsp;</p></span></p><p><span style="color:#1f497d;">Mit freundlichen Grüßen</span></p><p><span style="color:#1f497d;">John Günther</span></p><p><span style="color:#1f497d;"><p>&nbsp;</p></span></p><p><span style="color:#1f497d;"><a href="http://www.GeoFachDatenServer.de" rel="nofollow noreferrer noopener" target="_blank" title="http://www.GeoFachDatenServer.de"><span style="color:blue;">example.com</span></a> profitieren Sie vom umfangreichen Daten-Netzwerk </span></p><p><span style="color:#1f497d;"><p>&nbsp;</p></span></p><p><span style="color:#1f497d;">_ __ ___ ____________________________ ___ __ _</span></p><p><span style="color:#1f497d;"><p>&nbsp;</p></span></p><p><span style="color:#1f497d;">Example GmbH</span></p><p><span style="color:#1f497d;">Some What</span></p><p><span style="color:#1f497d;"><p>&nbsp;</p></span></p><p><span style="color:#1f497d;">Sitz: Someware-Straße 9, XXXXX Someware</span></p><p><span style="color:#1f497d;"><p>&nbsp;</p></span></p><p><span style="color:#1f497d;">M: +49 (0) XXX XX XX 70</span></p><p><span style="color:#1f497d;">T: +49 (0) XXX XX XX 22</span></p><p><span style="color:#1f497d;">F: +49 (0) XXX XX XX 11</span></p><p><span style="color:#1f497d;">W: www.example.de </span></p><p><span style="color:#1f497d;"><p>&nbsp;</p></span></p><p><span style="color:#1f497d;">Geschäftsführer: John Smith</span></p><p><span style="color:#1f497d;">HRB XXXXXX AG Someware</span></p><p><span style="color:#1f497d;">St.-Nr.: 112/107/05858</span></p><p><span style="color:#1f497d;"><p>&nbsp;</p></span></p><p><span style="color:#1f497d;">ISO 9001:2008 Zertifiziert -Qualitätsstandard mit Zukunft </span></p><p><span style="color:#1f497d;">_ __ ___ ____________________________ ___ __ _</span></p><p><span style="color:#1f497d;"><p>&nbsp;</p></span></p><p><span style="color:#1f497d;">Diese Information ist ausschließlich für den Adressaten bestimmt und kann vertrauliche oder gesetzlich geschützte Informationen enthalten. Wenn Sie nicht der bestimmungsgemäße Adressat sind, unterrichten Sie bitte den Absender und vernichten Sie diese Mail. Anderen als dem bestimmungsgemäßen Adressaten ist es untersagt, diese E-Mail zu lesen, zu speichern, weiterzuleiten oder ihren Inhalt auf welche Weise auch immer zu verwenden.</span></p></div><p><span style="color:#1f497d;"><p>&nbsp;</p></span></p><div>
<span class="js-signatureMarker"></span><p><b>Von:</b> Fritz Bauer [mailto:me@example.com] <br><b>Gesendet:</b> Donnerstag, 3. Mai 2012 11:51<br><b>An:</b> John Smith<br><b>Cc:</b> Smith, John Marian; johnel.fratczak@example.com; ole.brei@example.com; Günther John | Example GmbH; bkopon@example.com; john.heisterhagen@team.example.com; sven.rocked@example.com; michael.house@example.com; tgutzeit@example.com<br><b>Betreff:</b> Re: OTRS::XXX Erweiterung - Anhänge an CI's</p></div><p>&nbsp;</p><p>Hallo,</p><div> <p>&nbsp;</p></div><div>
<p>ich versuche an den Punkten anzuknüpfen.</p></div><div> <p>&nbsp;</p></div><div>
<p><b>a) LDAP Muster Konfigdatei</b></p></div><div> <p>&nbsp;</p></div><div>
@ -24,3 +25,4 @@ body: |-
<p>Viele Grüße!</p></div><div> <p>&nbsp;</p></div><div>
<div>
<p>-Fritz</p></div><p>On May 2, 2012, at 14:25 , John Smith wrote:<br><br></p><p>Moin Moin,<br><br>die Antwort ist zwar etwas spät, aber nach der Schulung war ich krank und danach<br>hatte ich viel zu tun auf der Arbeit, sodass ich keine Zeit für XXXX hatte.<br>Ich denke das ist allgemein das Problem, wenn sowas nebenbei gemacht werden muss.<br><br>Wie auch immer, danke für die mail mit dem ITSM Zusatz auch wenn das zur Zeit bei der Example nicht relevant ist.<br><br>Ich habe im XXXX Wiki den Punkt um die Vorlagen angefügt.<br>Ticket Template von John Bäcker<br>Bei uns habe ich das Ticket Template von John Bäcker in der Version 0.1.96 unter XXXX 3.0.10 implementiert. <br><br>Fritz wollte sich auch um das andere Ticket Template Modul kümmern und uns zur Verfügung stellen, welches unter XXXX 3.0 nicht lauffähig sein sollte.<br><br>Im Wiki kann ich die LDAP Muster Konfigdatei nicht finden.<br>Hat die jemand von euch zufälligerweise ?<br><br>Danke und Gruß<br>John Smith<br><br>Am 4. April 2012 08:24 schrieb Smith, John Marian &lt;john.smith@example.com&gt;:<br>Hallo zusammen,<br><br>ich hoffe Ihr seid noch gut nach Hause gekommen am Mittwoch. Der XXX Kurs Donnerstag und Freitag war noch ganz gut, wobei ich mir den letzten halben Tag eigentlich hätte schenken können.<br><br>Soweit ich weiß arbeitet Ihr nicht mit XXX? Falls doch habe ich hier eine tolle (eigentlich) kostenpflichtige Erweiterung für Euch.<br><br>Es handelt sich um eine programmiertes Paket von der XXXX AG. Die Weitergabe ist legal.<br><br>Mit dem Paket kann man Anhänge an CIs (Configuration Items) verknüpfen. Das ist sehr praktisch wenn man zum Beispiel Rechnungen an Server, Computern und und und anhängen möchte.<br><br>Der Dank geht an Frank Linden, der uns das Paket kostenlos zur Verfügung gestellt hat.<br><br>Viele Grüße aus Someware<br><br>John<br><br>_________________________<br>SysAdmin<br>John Marian Smith<br>IT-Management<br><br>Example GmbH &amp; Co. KG<br>Der Provider für<br>Mehrwertdienste &amp; YYY<br><br>Someware 23<br>XXXXX Someware<br><br>Tel. (01802) XX XX XX - 42<br>Fax (01802) XX XX XX - 99<br>nur 6 Cent je Anruf aus dem dt. Festnetz,<br>max. 42 Cent pro Min. aus dem Mobilfunknetz<br><br>E-Mail john.smith@Example.de<br>Web <a href="http://www.Example.de" rel="nofollow noreferrer noopener" target="_blank">www.Example.de</a><br>Amtsgericht Hannover HRA xxxxxxxx<br>Komplementärin: Example Verwaltungs- GmbH<br>Vertreten durch: Somebody, Somebody<br>Amtsgericht Someware HRB XXX XXX<br><br>_________________________ <br>Highlights der Example Contact Center-Suite:<br>Virtual XXX&amp;Power-XXX, Self-Services&amp;XXX-Portale,<br>XXX-/Web-Kundenbefragungen, CRM, PEP, YYY</p></div></div>
content_type: text/html

View file

@ -2,9 +2,10 @@
from: '"Hans BÄKOSchönland" <me@bogen.net>'
from_email: me@bogen.net
from_display_name: Hans BÄKOSchönland
to: Namedyński (hans@example.com)
subject: 'utf8: 使って / ISO-8859-1: Priorität" / cp-1251: Сергей Углицких'
content_type: text/html
body: '<p>this is a test</p><br><hr> <a href="http://localhost/8HMZENUS/2737??PS="
rel="nofollow noreferrer noopener" target="_blank" title="http://localhost/8HMZENUS/2737??PS=">Compare
Cable, DSL or Satellite plans: As low as $2.95. </a> <br> <br> Test1: <br> Test2:&amp;
<br> Test3:∋ <br> Test4:&amp; <br> Test5:='
content_type: text/html

View file

@ -2,8 +2,9 @@
from: Smith Sepp <smith@example.com>
from_email: smith@example.com
from_display_name: Smith Sepp
to: info@example.com
subject: Gruß aus Oberalteich
content_type: text/html
body: |-
<div>
<p>Herzliche Grüße aus Oberalteich sendet Herrn Smith</p><p>&nbsp;</p><p>Sepp Smith - Dipl.Ing. agr. (FH)</p><p>Geschäftsführer der example Straubing-Bogen</p><p>Klosterhof 1 | 94327 Bogen-Oberalteich</p><p>Tel: 09422-505601 | Fax: 09422-505620</p><p>Internet: <a href="http://example-straubing-bogen.de/" rel="nofollow noreferrer noopener" target="_blank">http://example-straubing-bogen.de</a></p><p>Facebook: <a href="http://facebook.de/examplesrbog" rel="nofollow noreferrer noopener" target="_blank">http://facebook.de/examplesrbog</a></p><p><b><img border="0" src="cid:image001.jpg@01CDB132.D8A510F0" alt="Beschreibung: Beschreibung: efqmLogo" style="width:60px;height:19px;"></b><b> - European Foundation für Quality Management</b></p><p>&nbsp;</p></div>
<p>Herzliche Grüße aus Oberalteich sendet Herrn Smith</p><p>&nbsp;</p><p>Sepp Smith - Dipl.Ing. agr. (FH)</p><p>Geschäftsführer der example Straubing-Bogen</p><p>Klosterhof 1 | 94327 Bogen-Oberalteich</p><p>Tel: 09422-505601 | Fax: 09422-505620</p><p>Internet: <a href="http://example-straubing-bogen.de/" rel="nofollow noreferrer noopener" target="_blank"><span style="color:blue;">http://example-straubing-bogen.de</span></a></p><p>Facebook: <a href="http://facebook.de/examplesrbog" rel="nofollow noreferrer noopener" target="_blank"><span lang="EN-US" style="color:blue;">http://facebook.de/examplesrbog</span></a></p><p><b><span style="color:navy;"><img border="0" src="cid:image001.jpg@01CDB132.D8A510F0" alt="Beschreibung: Beschreibung: efqmLogo" style="width:60px;height:19px;"></span></b><b><span lang="EN-US" style="color:navy;"> - European Foundation für Quality Management</span></b></p><p>&nbsp;</p></div>
content_type: text/html

View file

@ -2,15 +2,15 @@
from: Alex.Smith@example.com
from_email: Alex.Smith@example.com
from_display_name: ''
subject: 'AW: Agenda [Ticket#11995]'
to: example@znuny.com
content_type: text/html
subject: 'AW: Agenda [Ticket#11995]'
body: |-
<div>
<p>Hallo Herr Edenhofer,</p><p>&nbsp;</p><p>möglicherweise haben wir für unsere morgige Veranstaltung ein Problem mit unserer Develop-Umgebung.<br> Der Kollege Smith wollte uns noch die Möglichkeit geben, direkt auf die Datenbank zugreifen zu können, hierzu hat er Freitag noch einige Einstellungen vorgenommen und uns die Zugangsdaten mitgeteilt. Eine der Änderungen hatte aber offenbar zur Folge, dass ein Starten der Develop-Anwendung nicht mehr möglich ist (s. Fehlermeldung)<br>
<img src="cid:image002.png@01CDD14F.29D467A0" style="width:577px;height:345px;"></p><p>&nbsp;</p><p>Herr Smith ist im Urlaub, er wurde von seinen Datenbank-Kollegen kontaktiert aber offenbar lässt sich nicht mehr 100%ig rekonstruieren, was am Freitag noch verändert wurde.<br> Meinen Sie, dass Sie uns bei der Behebung der o. a. Störung morgen helfen können? Die Datenbank-Kollegen werden uns nach besten Möglichkeiten unterstützen, Zugriff erhalten wir auch.</p><p>&nbsp;</p><p>Mit freundlichen Grüßen</p><p>&nbsp;</p><p>Alex Smith<br>
<br> Abteilung IT-Strategie, Steuerung &amp; Support<br> im Bereich Informationstechnologie<br>
<br> Example Example GmbH<br> (Deutsche Example)<br> Longstreet 5<br> 11111 Frankfurt am Main<br>
<br> Telefon: (069) 11 1111 11 30</p><p>Telefon ServiceDesk: (069) 11 1111 12 22<br> Telefax: (069) 11 1111 14 85<br> Internet: <a href="http://www.example.com/" title="http://www.example.com/" rel="nofollow noreferrer noopener" target="_blank">www.example.com</a></p><p>&nbsp;</p><span class="js-signatureMarker"></span><p>-----Ursprüngliche Nachricht-----<br> Von: Martin Edenhofer via Znuny Sales [mailto:example@znuny.com] <br> Gesendet: Freitag, 30. November 2012 13:50<br> An: Smith, Alex<br> Betreff: Agenda [Ticket#11995]</p><p>&nbsp;</p><p>Sehr geehrte Frau Smith,</p><p>&nbsp;</p><p>ich habe (wie telefonisch avisiert) versucht eine Agenda für nächste Woche zusammen zu stellen.</p><p>&nbsp;</p><p>Leider ist es mir dies Inhaltlich nur unzureichend gelungen (es gibt zu wenig konkrete Anforderungen im Vorfeld :) ).</p><p>&nbsp;</p><p>Dadurch würde ich gerne am Dienstag als erste Amtshandlung (mit Herrn Molitor im Boot) die Anforderungen und Ziele der zwei Tage, Mittelfristig und Langfristig definieren. Aufgrund dessen können wir die Agenda der zwei Tage fixieren. Inhaltlich können wir (ich) alles abdecken, von daher gibt es hier keine Probleme. ;)</p><p>&nbsp;</p><p>Ist dies für Sie so in Ordnung?</p><p>&nbsp;</p><p>Für Fragen stehe ich gerne zur Verfügung!</p><p>&nbsp;</p><p>Ich freue mich auf Dienstag,</p><p>&nbsp;</p><p>Martin Edenhofer</p><p>&nbsp;</p><p>--</p><p>Enterprise Services for OTRS</p><p>&nbsp;</p><p>Znuny GmbH // Marienstraße 11 // 10117 Berlin // Germany</p><p>&nbsp;</p><p>P: +49 (0) 30 60 98 54 18-0</p><p>F: +49 (0) 30 60 98 54 18-8</p><p>W: <a href="http://znuny.com" rel="nofollow noreferrer noopener" target="_blank">http://znuny.com</a>
<br> Telefon: (069) 11 1111 11 30</p><p>Telefon ServiceDesk: (069) 11 1111 12 22<br> Telefax: (069) 11 1111 14 85<br> Internet: <span style="color:navy;"><a href="http://www.example.com/" title="http://www.example.com/" rel="nofollow noreferrer noopener" target="_blank">www.example.com</a></span></p><p>&nbsp;</p><span class="js-signatureMarker"></span><p>-----Ursprüngliche Nachricht-----<br> Von: Martin Edenhofer via Znuny Sales [mailto:example@znuny.com] <br> Gesendet: Freitag, 30. November 2012 13:50<br> An: Smith, Alex<br> Betreff: Agenda [Ticket#11995]</p><p>&nbsp;</p><p>Sehr geehrte Frau Smith,</p><p>&nbsp;</p><p>ich habe (wie telefonisch avisiert) versucht eine Agenda für nächste Woche zusammen zu stellen.</p><p>&nbsp;</p><p>Leider ist es mir dies Inhaltlich nur unzureichend gelungen (es gibt zu wenig konkrete Anforderungen im Vorfeld :) ).</p><p>&nbsp;</p><p>Dadurch würde ich gerne am Dienstag als erste Amtshandlung (mit Herrn Molitor im Boot) die Anforderungen und Ziele der zwei Tage, Mittelfristig und Langfristig definieren. Aufgrund dessen können wir die Agenda der zwei Tage fixieren. Inhaltlich können wir (ich) alles abdecken, von daher gibt es hier keine Probleme. ;)</p><p>&nbsp;</p><p>Ist dies für Sie so in Ordnung?</p><p>&nbsp;</p><p>Für Fragen stehe ich gerne zur Verfügung!</p><p>&nbsp;</p><p>Ich freue mich auf Dienstag,</p><p>&nbsp;</p><p>Martin Edenhofer</p><p>&nbsp;</p><p>--</p><p>Enterprise Services for OTRS</p><p>&nbsp;</p><p>Znuny GmbH // Marienstraße 11 // 10117 Berlin // Germany</p><p>&nbsp;</p><p>P: +49 (0) 30 60 98 54 18-0</p><p>F: +49 (0) 30 60 98 54 18-8</p><p>W: <a href="http://znuny.com" rel="nofollow noreferrer noopener" target="_blank"><span style="color:windowtext;">http://znuny.com</span></a>
</p><p>&nbsp;</p><p>Location: Berlin - HRB 139852 B Amtsgericht Berlin-Charlottenburg Managing Director: Martin Edenhofer</p></div><div>
<p>-------------------------------------------------------------------------------------------------</p><p>Rechtsform: GmbH</p><p>Geschaeftsfuehrer: Dr. Carl Heinz Smith, Dr. Carsten Smith</p><p>Sitz der Gesellschaft und Registergericht: Frankfurt/Main, HRB 11111</p><p>Alleiniger Gesellschafter: Bundesrepublik Deutschland,</p><p>vertreten durch das XXX der Finanzen.</p></div>
content_type: text/html

View file

@ -1,8 +1,12 @@
--- !ruby/hash:ActiveSupport::HashWithIndifferentAccess
from_email: vipyimin@126.com
from_display_name: ''
subject: "【 直通美国排名第49大学 成功后付费 】"
to: '"enterprisemobility.apacservice" <enterprisemobility.apacservice@motorola.com>'
subject: "【 直通美国排名第49大学 成功后付费 】"
body: |-
新建网页 3 <div>您好,这封信如果影响到您的生活和工作,我们向您诚恳的道歉。</div><div>您回复此邮箱即可退订,以后绝对不会再次收到,</div><div>
<strong>再次祝福您工作顺利,婚姻美满,家庭幸福,生意兴隆。</strong> </div><div> </div><p><b>直通美国排名第49大学 成功后付费<br></b><br> <b> 东北大学</b><br> <a href="http://www.northeastern.edu" rel="nofollow noreferrer noopener" target="_blank">www.northeastern.edu</a><br> </p><p>1、桥梁课程完成后达到毕业标准即可申请东北大学的学士学位/硕士学位。<br>l TOEFL:61Ibt(单项不低于13分其中口语16分及写作14分以上)IELTS:6.0 (单项不低于5.5)<br>l 在校成绩平均80分以上其中上商学院所有专业经济学和建筑学要求平均84分以上<br><br>2、直接申请本科需要高中毕业或高三在读; TOEFLibt92reading22listening22speaking24<br>writing22, IELTS6.5对国际学生而言SAT或ACT非必须提供。GPA3.0以上<br><br>3、直接申请硕士需本科毕业有学位或大四在读学生。硕士要求语言成绩100分以上。<br>GPA3.0以上部分专业要求3.33以上。<br><br>优势专业:<br><br>商业及社会科学,工程学,数学及计算机学,物理及生命科学,商业行政管理,计算机学,<br>行为神经科学,经济学,化学,生物,金融及会计,工程学-土木及环保,生物技术,国际<br>事务,工程学-计算机系统,新闻学,工程学-电机,健康科学,数学,物理等。</p><p><br><b>留学咨询:</b></p><p>&nbsp;</p><p><b>陈老师qq:477941912 电话13521481644<br>王老师qq:1756703114 电话: 13671177089</b><br> </p><p><b>【咨询回复邮箱即可】</b></p><p>&nbsp;</p><p><b>美国投资移民——50万美元直投项目</b></p><p>&nbsp;</p><p>一、项目简介:<br><br>50万美元 加盟美国知名美发品牌 开自己的3家美发厅 可以提供12-15个全职工作机<br>会完全满足投资移民的用工需求自己拥有三家店面的100% 股权, 品牌商推荐经过<br>企业严格考核的高级职业经理主理财务100%透明, 保底年回报率1% 5年后回购。<br><br>二、项目特点:</p><p><br>l 100%直接投资、直接就业、审批时间短;<br>l 自有100%的产权, 财务完全透明;<br>l 知名品牌的成熟商业模式,严格考核的职业经理人主理;<br>l 五年后安全的收购措施。<br> </p><p>三、运营模式:</p><p><br>品牌经理(相当于项目经理)已经有自己三家盈利的店,投资人自己也开三家店, 委托品牌<br>经理来管理, 如果盈利他拿1/4利润如果亏损他也要赔1/4. 您觉得这样合理吗? <br><br>对于管理公司项目总承包来讲如果同时管理着200家门店的品牌经理项目经理 <br>这样的运营会赔钱吗?如果算总账不赔钱,他们就可以按照原价收购每个投资人的店面, <br>然后再按照市场价卖给加盟店的经理. 所以管理公司在享受投资期间3/4的利益的同时<br>还会享受投资撤出后店面增值的收益。 </p><p>&nbsp;</p><p><b>移民咨询:</b></p><p>&nbsp;</p><p><b>李先生qq: 2654035999 </b><b>电话13391539988</b></p><p><br> </p><p>&nbsp;</p>enterprisemobility.apacservice XYCJDMPXYCICHYCICJEOUNSICIAACHXXYCGVTMPYBGVRDLMNSIBEPZGVSJENSIABFTKJFQCJFQBGVQCJDLMNSGWVSICHYCIBDLNRDMPXZFRFQDKJFSHYCHYDKHZGUOUOVRGVRFRDMOWUNTLNQBGUOUOWUQBDLLKJEOTNQBGUPZFREPXABEOVRFTLLKIBFSJENRGVTLKJEPZEOUOUPYCHXZFSHXXZENSHXXYCJFSJENQCJEQACIBFQBFREPXZFRFRGUPXZGUPYCGVTMNRFSHZENTKICHYDKICICIBEQBEOWUNTLKGWTNRDMNTLKHXYCJEPYCHZGWVRFSHZDMQACJENREOWUQC 17625
新建网页 3 <span style=" color: blue;">
<div>您好,这封信如果影响到您的生活和工作,我们向您诚恳的道歉。</div><div>您回复此邮箱即可退订,以后绝对不会再次收到,</div><div>
<strong>再次祝福您工作顺利,婚姻美满,家庭幸福,生意兴隆。</strong> </div><div> </div></span>
<p><span style=" color: blue;"><b>直通美国排名第49大学 成功后付费<br></b><br></span> <b> 东北大学</b><br> <a href="http://www.northeastern.edu" rel="nofollow noreferrer noopener" target="_blank">www.northeastern.edu</a><br> </p><p>1、桥梁课程完成后达到毕业标准即可申请东北大学的学士学位/硕士学位。<br>l TOEFL:61Ibt(单项不低于13分其中口语16分及写作14分以上)IELTS:6.0 (单项不低于5.5)<br>l 在校成绩平均80分以上其中上商学院所有专业经济学和建筑学要求平均84分以上<br><br>2、直接申请本科需要高中毕业或高三在读; TOEFLibt92reading22listening22speaking24<br>writing22, IELTS6.5对国际学生而言SAT或ACT非必须提供。GPA3.0以上<br><br>3、直接申请硕士需本科毕业有学位或大四在读学生。硕士要求语言成绩100分以上。<br>GPA3.0以上部分专业要求3.33以上。<br><br>优势专业:<br><br>商业及社会科学,工程学,数学及计算机学,物理及生命科学,商业行政管理,计算机学,<br>行为神经科学,经济学,化学,生物,金融及会计,工程学-土木及环保,生物技术,国际<br>事务,工程学-计算机系统,新闻学,工程学-电机,健康科学,数学,物理等。</p><p><br><b>留学咨询:</b></p><p>&nbsp;</p><p><b>陈老师qq:477941912 电话13521481644<br>王老师qq:1756703114 电话: 13671177089</b><br> </p><p><b>【咨询回复邮箱即可】</b></p><p>&nbsp;</p><p><b>美国投资移民——50万美元直投项目</b></p><p>&nbsp;</p><p>一、项目简介:<br><br>50万美元 加盟美国知名美发品牌 开自己的3家美发厅 可以提供12-15个全职工作机<br>会完全满足投资移民的用工需求自己拥有三家店面的100% 股权, 品牌商推荐经过<br>企业严格考核的高级职业经理主理财务100%透明, 保底年回报率1% 5年后回购。<br><br>二、项目特点:</p><p><br>l 100%直接投资、直接就业、审批时间短;<br>l 自有100%的产权, 财务完全透明;<br>l 知名品牌的成熟商业模式,严格考核的职业经理人主理;<br>l 五年后安全的收购措施。<br> </p><p>三、运营模式:</p><p><br>品牌经理(相当于项目经理)已经有自己三家盈利的店,投资人自己也开三家店, 委托品牌<br>经理来管理, 如果盈利他拿1/4利润如果亏损他也要赔1/4. 您觉得这样合理吗? <br><br>对于管理公司项目总承包来讲如果同时管理着200家门店的品牌经理项目经理 <br>这样的运营会赔钱吗?如果算总账不赔钱,他们就可以按照原价收购每个投资人的店面, <br>然后再按照市场价卖给加盟店的经理. 所以管理公司在享受投资期间3/4的利益的同时<br>还会享受投资撤出后店面增值的收益。 </p><p>&nbsp;</p><p><b>移民咨询:</b></p><p>&nbsp;</p><p><b>李先生qq: 2654035999 </b><b>电话13391539988</b></p><p><br> </p><p>&nbsp;</p>enterprisemobility.apacservice XYCJDMPXYCICHYCICJEOUNSICIAACHXXYCGVTMPYBGVRDLMNSIBEPZGVSJENSIABFTKJFQCJFQBGVQCJDLMNSGWVSICHYCIBDLNRDMPXZFRFQDKJFSHYCHYDKHZGUOUOVRGVRFRDMOWUNTLNQBGUOUOWUQBDLLKJEOTNQBGUPZFREPXABEOVRFTLLKIBFSJENRGVTLKJEPZEOUOUPYCHXZFSHXXZENSHXXYCJFSJENQCJEQACIBFQBFREPXZFRFRGUPXZGUPYCGVTMNRFSHZENTKICHYDKICICIBEQBEOWUNTLKGWTNRDMNTLKHXYCJEPYCHZGWVRFSHZDMQACJENREOWUQC 17625
content_type: text/html
reply-to: vipyimin@126.com

View file

@ -2,8 +2,8 @@
from: '"我" <>'
from_email: vipyiming@126.com
from_display_name: ''
subject: "《欧美简讯》"
to: 377861373 <377861373@qq.com>
subject: "《欧美简讯》"
body: |-
新建网页 4 <div>
<div>
@ -75,10 +75,15 @@ body: |-
<b> 100%直接投资、直接就业、审批时间短8-9个月 </b></p><p>2. 自有100%的产权, 财务完全透明, 风险可控;</p><p>3. 知名品牌的成熟商业模式,严格考核的职业经理人主理;</p><p>4. 五年后安全的收购措施。</p><p>直接投资项目虽然是最笨的办法, 但是申请人和移民顾问起码可以监控项目的进程和用工人数,如果选择</p><p>好移民项目和担保体系,投资相对更安全。</p><p>VIP专线 13391539988 QQ: 2654035999</p><p>免费电话400-6869-685</p><p>&nbsp;</p><p>
<b> ④美国本科留学——成功后付费</b>
</p><p>
<b> 直通美国排名第49的美国大学东北大学www.northeastern.edu</b></p><p>本科桥梁课程:完成后达到毕业标准,即可申请东北大学的学士学位</p><p>入学条件TOEFL:61Ibt(单项不低于13分其中口语16分及写作14分以上)IELTS:6.0 (单项不低于5.5)</p><p>在校成绩平均80分以上其中上商学院所有专业经济学和建筑学要求平均84分以上</p><p>优势专业:</p><p>商业及社会科学,工程学,数学及计算机学,物理及生命科学,商业行政管理,计算机学,行为神经科学,</p><p>经济学,化学,生物,金融及会计,工程学-土木及环保,生物技术,国际事务,工程学-计算机系统,</p><p>新闻学,工程学-电机,健康科学,数学,物理等。</p><p>2014 夏季2014年4月30日入学申请截止日期为2014年2月26日</p></div></div></div><div>
<b> 直通美国排名第49的美国大学东北大学www.northeastern.edu</b></p><p>本科桥梁课程:完成后达到毕业标准,即可申请东北大学的学士学位</p><p>入学条件TOEFL:61Ibt(单项不低于13分其中口语16分及写作14分以上)IELTS:6.0 (单项不低于5.5)</p><p>在校成绩平均80分以上其中上商学院所有专业经济学和建筑学要求平均84分以上</p><p>优势专业:</p><p>商业及社会科学,工程学,数学及计算机学,物理及生命科学,商业行政管理,计算机学,行为神经科学,</p><p>经济学,化学,生物,金融及会计,工程学-土木及环保,生物技术,国际事务,工程学-计算机系统,</p><p>新闻学,工程学-电机,健康科学,数学,物理等。</p><p>
<span style="color: rgb(31, 73, 125);" lang="EN-US"> 2014</span><span style="color: rgb(31, 73, 125);" lang="EN-US">
</span>
<span style="color: rgb(31, 73, 125);"> 夏季</span><span style="color: rgb(31, 73, 125);" lang="EN-US">2014</span><span style="color: rgb(31, 73, 125);">年</span><span style="color: rgb(31, 73, 125);" lang="EN-US">4</span><span style="color: rgb(31, 73, 125);">月</span><span style="color: rgb(31, 73, 125);" lang="EN-US">30</span><span style="color: rgb(31, 73, 125);">日入学;申请截止日期为</span><span style="color: rgb(31, 73, 125);" lang="EN-US">2014</span><span style="color: rgb(31, 73, 125);">年</span><span style="color: rgb(31, 73, 125);" lang="EN-US">2</span><span style="color: rgb(31, 73, 125);">月</span><span style="color: rgb(31, 73, 125);" lang="EN-US">26</span><span style="color: rgb(31, 73, 125);">日</span></p></div></div></div><div>
<div>
<div>
<div>
<div>---由“销售型”到“管理型”再到“经营型”店长的三级跳<br> 5年时间里我们服务了3000多家门店走访了全国无数大大小小的门店我们发现店长普遍存在以下困惑:<br> ◆如何提升沟通协调力?<br> ◆如何提升执行力?<br> ◆如何有效激励部属?<br> ◆如何有效教导培育部属?<br> ◆如何处理现场突发事件?<br> ◆如何带出一支有活力,有凝聚力,高业绩的门店团队?<br> ◆如何根据门店数据分析,有效进行货品调整,降低库存?<br> ……<br>
<br> 来吧集德能营销学院研发的《打造金牌店长特训营》课程近年为中国门店培养了8000多名优秀店长。本课程为您提供19个实用落地工具“回去就能用行动就见效”是本次店长训练营的最大卖点。课程之外的经营管理问题讲师还可以与您作个性化探讨课程结束时100%为您解决,这是我们讲师团队一贯的服务作风。<p>
<br> 【课程时间】8月9-10日广州 8月23-24日武汉 10月2526日深圳 11月78日上海 12月67日广州<br> 【授课形式】讲师讲授+角色扮演+情境视频+小组研讨+团队分享+讲师点评<br> 【课程对象】储备店长、新任店长、正副店长、门店经理、区域督导、营运经理等<br> 【联系方式】400-788-1993 QQ:1571991600邱小姐 QQ:908204747严小姐<br> 【课程内容】欢迎登陆<a href="http://www.51jdn.com" rel="nofollow noreferrer noopener" target="_blank">http://www.51jdn.com</a>查阅</p></div></div></div></div></div>
content_type: text/html
reply-to: vipyiming@126.com

View file

@ -2,12 +2,13 @@
from: Health and Care-Mall <drugs-cheapest8@sicor.com>
from_email: drugs-cheapest8@sicor.com
from_display_name: Health and Care-Mall
subject: The Highest Grade Drugs And EXTRA LOW Price .
to: info2@znuny.com
subject: The Highest Grade Drugs And EXTRA LOW Price .
body: |-
________________________________________________________________________Yeah but even when they. Beth liî ed her neck as well <br>
<span style="color:#f9f8f0;">________________________________________________________________________Yeah but even when they. Beth liî ed her neck as well</span>
<br>
<div>
<table border="0" cellspacing="5" style="color:#e3edea; background-color:#eee0ec; font-size:1px;">
<table border="0" cellspacing="5" style="color:#e3edea; background-color:#eee0ec;">
<tr>
<td colspan="2">óû5a<span style="color:#dd7f6f;">H</span>w5³½<span style="color:#dd7f6f;">I</span>ΨµÁx<span style="color:#dd7f6f;">G</span>⌊o8K<span style="color:#dd7f6f;">H</span>Cmς9<span style="color:#dd7f6f;">-</span>Ö½23<span style="color:#dd7f6f;">Q</span>gñV6<span style="color:#dd7f6f;">U</span>AD¿ù<span style="color:#dd7f6f;">A</span>X←t¨<span style="color:#dd7f6f;">L</span>f7⊕®<span style="color:#dd7f6f;">I</span>r²r½<span style="color:#dd7f6f;">T</span>LA5p<span style="color:#dd7f6f;">Y</span>JhjV<span style="color:#dd7f6f;"> </span>gPnã<span style="color:#dd7f6f;">M</span>36V®<span style="color:#dd7f6f;">E</span>89RU<span style="color:#dd7f6f;">D</span>ΤÅ©È<span style="color:#dd7f6f;">I</span>9æsà<span style="color:#dd7f6f;">C</span>ΘYEϒ<span style="color:#dd7f6f;">A</span>fgb<span style="color:#dd7f6f;">T</span>¡1∫r<span style="color:#dd7f6f;">I</span>oiš¦<span style="color:#dd7f6f;">O</span>5oUI<span style="color:#dd7f6f;">N</span>±Isæ<span style="color:#dd7f6f;">S</span>عPp<span style="color:#dd7f6f;"> </span>Ÿÿq1<span style="color:#dd7f6f;">F</span>Χ⇑eG<span style="color:#dd7f6f;">O</span>z⌈F³<span style="color:#dd7f6f;">R</span>98y§<span style="color:#dd7f6f;"> </span>74”l<span style="color:#dd7f6f;">T</span>r8r§<span style="color:#dd7f6f;">H</span>ÐæuØ<span style="color:#dd7f6f;">E</span>ÛPËq<span style="color:#dd7f6f;"> </span>Vmkf<span style="color:#dd7f6f;">B</span>∫SKN<span style="color:#dd7f6f;">E</span>lst4<span style="color:#dd7f6f;">S</span>∃Á8ü<span style="color:#dd7f6f;">T</span>ðG°í<span style="color:#dd7f6f;"> </span>lY9å<span style="color:#dd7f6f;">P</span>u×8&gt;<span style="color:#dd7f6f;">R</span>Ò¬⊕Μ<span style="color:#dd7f6f;">I</span>ÙzÙC<span style="color:#dd7f6f;">C</span>4³ÌQ<span style="color:#dd7f6f;">E</span>ΡºSè<span style="color:#dd7f6f;">!</span>XgŒs.</td>
</tr>
@ -82,4 +83,5 @@ body: |-
<tr>
<td colspan="2">ŠeÏÀ<span style="color:#2a0984;">&gt;</span>Ãσ½å<span style="color:#2a0984;"> </span>bpøN<span style="color:#2a0984;">E</span>RN8e<span style="color:#2a0984;">a</span>D6Ån<span style="color:#2a0984;">s</span>7Abh<span style="color:#2a0984;">y</span>±Æü∩<span style="color:#2a0984;"> </span>D7sV<span style="color:#2a0984;">R</span>8'ºE<span style="color:#2a0984;">e</span>ÿáDV<span style="color:#2a0984;">f</span>c˜3ë<span style="color:#2a0984;">u</span>7ÏÆq<span style="color:#2a0984;">n</span>cË3q<span style="color:#2a0984;">d</span>Ê4∇<span style="color:#2a0984;">s</span>ρmi5<span style="color:#2a0984;"> </span>6æ¾Ê<span style="color:#2a0984;">a</span>ä°∝T<span style="color:#2a0984;">n</span>Qb9s<span style="color:#2a0984;">d</span>ÀMù<span style="color:#2a0984;"> </span>∑gMÿ<span style="color:#2a0984;">2</span>bNð¶<span style="color:#2a0984;">4</span>cä½⊆<span style="color:#2a0984;">/</span>4X1κ<span style="color:#2a0984;">7</span>¥f1z<span style="color:#2a0984;"> </span>ϖ1úE<span style="color:#2a0984;">C</span>zf•1<span style="color:#2a0984;">u</span>Mbyc<span style="color:#2a0984;">s</span>1•9¾<span style="color:#2a0984;">t</span>s0Tà<span style="color:#2a0984;">o</span>3hêD<span style="color:#2a0984;">m</span>Ss3Á<span style="color:#2a0984;">e</span>7BíÉ<span style="color:#2a0984;">r</span>ô⋅ãÔ<span style="color:#2a0984;"> </span>φ8Ä″<span style="color:#2a0984;">S</span>SXð¤<span style="color:#2a0984;">u</span>úI¸5<span style="color:#2a0984;">p</span>58uH<span style="color:#2a0984;">p</span>2cß±<span style="color:#2a0984;">o</span>∂T©R<span style="color:#2a0984;">r</span>d6sM<span style="color:#2a0984;">t</span>∪µµξ<span style="color:#2a0984;">!</span>é4Xb</td>
</tr> </table>
</div>Both hands through the fear in front.<br>Wade to give it seemed like this. Yeah but one for any longer. Everything you going inside the kids.
</div><span style="color:#f8f8f4;">Both hands through the fear in front.<br>Wade to give it seemed like this. Yeah but one for any longer. Everything you going inside the kids.</span>
content_type: text/html

View file

@ -2,11 +2,11 @@
from: Viagra Super Force Online <pharmacy_affordable1@ertelecom.ru>
from_email: pharmacy_affordable1@ertelecom.ru
from_display_name: Viagra Super Force Online
subject: World Best DRUGS Mall For a Reasonable Price.
to: info@znuny.nix
body: "_________________________________________________________________________________Please
beth saw his head <br>\n<div>\n<table border=\"0\" cellspacing=\"5\" style=\"color:#e0e7e8;
background-color:#e3efef; font-size:1px;\">\n<tr>\n<td colspan=\"2\">9õh<span style=\"color:#f18246;\">H</span>3ÿo<span
subject: World Best DRUGS Mall For a Reasonable Price.
body: "<span style=\"color:#f9f8f7;\">_________________________________________________________________________________Please
beth saw his head</span>\n<br>\n<div>\n<table border=\"0\" cellspacing=\"5\" style=\"color:#e0e7e8;
background-color:#e3efef;\">\n<tr>\n<td colspan=\"2\">9õh<span style=\"color:#f18246;\">H</span>3ÿo<span
style=\"color:#f18246;\">I</span>Úõ´<span style=\"color:#f18246;\">G</span>ÿi<span
style=\"color:#f18246;\">H</span>±6u<span style=\"color:#f18246;\">-</span>û◊N<span
style=\"color:#f18246;\">Q</span>4ùä<span style=\"color:#f18246;\">U</span>¹aw<span
@ -413,14 +413,16 @@ body: "_________________________________________________________________________
style=\"color:#18136c;\">u</span>X2g<span style=\"color:#18136c;\">p</span>3yi<span
style=\"color:#18136c;\">p</span>·³2<span style=\"color:#18136c;\">o</span>D£3<span
style=\"color:#18136c;\">r</span>c3μ<span style=\"color:#18136c;\">t</span>ks<span
style=\"color:#18136c;\">!</span>sWK</td>\n</tr> </table>\n</div>When she were there
you here. Lott to need for amy said.<br>Once more than ever since matt. Lott said
turning oď ered. Tell you so matt kept going.<br>Homegrown dandelions by herself
into her lips. Such an excuse to stop thinking about. Leave us and be right. <br><br>\n<hr>\n<table
style=\"border-collapse:collapse;border:none;\">\n<tr>\n<td style=\"border:none;padding:0px
15px 0px 8px;\">\n<a href=\"http://www.avast.com/\" rel=\"nofollow noreferrer noopener\"
target=\"_blank\" title=\"http://www.avast.com/\"> </a>\n</td>\n<td>\n<p> Đ­Ń\x82Đž
Ń\x81ООйŃ\x89онио Ń\x81вОйОднО ĐžŃ\x82 виŃ\x80Ń\x83Ń\x81Ов и
вŃ\x80одОнОŃ\x81нОгО Đ\x9FĐ\x9E йНагОдаŃ\x80Ń\x8F <a href=\"http://www.avast.com/\"
rel=\"nofollow noreferrer noopener\" target=\"_blank\" title=\"http://www.avast.com/\">avast!
Antivirus</a> СаŃ\x89иŃ\x82Đ° Đ°ĐşŃ\x82ивна. </p></td>\n</tr>\n</table>"
style=\"color:#18136c;\">!</span>sWK</td>\n</tr> </table>\n</div><span style=\"color:#f7f0f5;\">When
she were there you here. Lott to need for amy said.<br>Once more than ever since
matt. Lott said turning oď ered. Tell you so matt kept going.<br>Homegrown dandelions
by herself into her lips. Such an excuse to stop thinking about. Leave us and be
right.</span>\n<br><br>\n<hr>\n<table style=\"border-collapse:collapse;border:none;\">\n<tr>\n<td
style=\"border:none;padding:0px 15px 0px 8px;\">\n<a href=\"http://www.avast.com/\"
rel=\"nofollow noreferrer noopener\" target=\"_blank\" title=\"http://www.avast.com/\">
</a>\n</td>\n<td>\n<p> Đ­Ń\x82Đž Ń\x81ООйŃ\x89онио Ń\x81вОйОднО ĐžŃ\x82
виŃ\x80Ń\x83Ń\x81Ов и вŃ\x80одОнОŃ\x81нОгО Đ\x9FĐ\x9E йНагОдаŃ\x80Ń\x8F
<a href=\"http://www.avast.com/\" rel=\"nofollow noreferrer noopener\" target=\"_blank\"
title=\"http://www.avast.com/\">avast! Antivirus</a> СаŃ\x89иŃ\x82Đ° Đ°ĐşŃ\x82ивна.
</p></td>\n</tr>\n</table>"
content_type: text/html

View file

@ -2,6 +2,33 @@
from: Gilbertina Suthar <ireoniqla@lipetsk.ru>
from_email: ireoniqla@lipetsk.ru
from_display_name: Gilbertina Suthar
subject: P..E..N-I..S__-E N L A R-G E-M..E..N T-___P..I-L-L..S...Info.
to: Info <info@znuny.nix>
body: Puzzled by judith bronte dave. Melvin will want her way through with.<br>Continued adam helped charlie cried. Soon joined the master bathroom. Grinned adam rubbed his arms she nodded.<br>Freemont and they talked with beppe.<br>Thinking of bed and whenever adam.<br>Mike was too tired man to hear.<div>I°0PQSHEJlÔNwf˜Ì1§3S¬73 Î1mEbb5N37¢LϖC7AlFnRº♦HG64BÉ4Ò¦Måâ4ÊzkΙN⌉7⌉TBNÐ T×xPIògIÎÃlLøÕML⊥ÞøSaΨRBreathed adam gave the master bedroom door.<br>Better get charlie took the wall.<br>Charlotte clark smile he saw charlie.<br>Dave and leaned her tears adam.</div>Maybe we want any help me that.<br>Next morning charlie gazed at their father.<br>Well as though adam took out here. Melvin will be more money. Called him into this one last night.<br>Men joined the pickup truck pulled away. Chuck could make sure that.<a href="http://%D0%B0%D0%BE%D1%81%D0%BA.%D1%80%D1%84?jmlfwnwe&amp;ucwkiyyc" rel="nofollow noreferrer noopener" target="_blank" title="http://%D0%B0%D0%BE%D1%81%D0%BA.%D1%80%D1%84?jmlfwnwe&amp;ucwkiyyc"><b>†p­C L I C K Ȟ E R EEOD !</b></a>Chuckled adam leaned forward and leî charlie.<br>Just then returned to believe it here.<br>Freemont and pulling out several minutes.
subject: P..E..N-I..S__-E N L A R-G E-M..E..N T-___P..I-L-L..S...Info.
body: <span style="color:#fbfaf8;">Puzzled by judith bronte dave. Melvin will want
her way through with.<br>Continued adam helped charlie cried. Soon joined the master
bathroom. Grinned adam rubbed his arms she nodded.<br>Freemont and they talked with
beppe.<br>Thinking of bed and whenever adam.<br>Mike was too tired man to hear.</span><div
style="color:#f2e9b5;">I°0<span style="color:#17133c;">P</span>QSH<span style="color:#17133c;">E</span>JlÔ<span
style="color:#17133c;">N</span>wf˜<span style="color:#17133c;">Ì</span>1§3<span
style="color:#17133c;">S</span>¬73<span style="color:#17133c;"> </span>Î1m<span
style="color:#17133c;">E</span>bb5<span style="color:#17133c;">N</span>37¢<span
style="color:#17133c;">L</span>ϖC7<span style="color:#17133c;">A</span>lFn<span
style="color:#17133c;">R</span>º♦H<span style="color:#17133c;">G</span>64B<span
style="color:#17133c;">É</span>4Ò¦<span style="color:#17133c;">M</span>åâ4<span
style="color:#17133c;">Ê</span>zkΙ<span style="color:#17133c;">N</span>⌉7⌉<span
style="color:#17133c;">T</span>BNÐ<span style="color:#17133c;"> </span>T×x<span
style="color:#17133c;">P</span>Iòg<span style="color:#17133c;">I</span>ÎÃl<span
style="color:#17133c;">L</span>øÕM<span style="color:#17133c;">L</span>⊥Þø<span
style="color:#17133c;">S</span>aΨRBreathed adam gave the master bedroom door.<br>Better
get charlie took the wall.<br>Charlotte clark smile he saw charlie.<br>Dave and
leaned her tears adam.</div><span style="color:#f7f3ff;">Maybe we want any help
me that.<br>Next morning charlie gazed at their father.<br>Well as though adam took
out here. Melvin will be more money. Called him into this one last night.<br>Men
joined the pickup truck pulled away. Chuck could make sure that.</span><span style="color:#fcecbf;"><a
href="http://%D0%B0%D0%BE%D1%81%D0%BA.%D1%80%D1%84?jmlfwnwe&amp;ucwkiyyc" rel="nofollow
noreferrer noopener" target="_blank" title="http://%D0%B0%D0%BE%D1%81%D0%BA.%D1%80%D1%84?jmlfwnwe&amp;ucwkiyyc"><b><span
style="color:#f5e1b9;">†p­</span>C L I C K Ȟ E R E<span style="color:#f1e9ba;">EOD</span>
!</b></a></span><span style="color:#f6f9fc;">Chuckled adam leaned forward and leî
charlie.<br>Just then returned to believe it here.<br>Freemont and pulling out several
minutes.</span>
content_type: text/html

View file

@ -2,36 +2,34 @@
from: Paula <databases.en@example.com>
from_email: databases.en@example.com
from_display_name: Paula
subject: Kontakte
to: info@example.ch
subject: Kontakte
body: |-
<table border="0"><tr><td>
<table cellspacing="0" cellpadding="0" border="0"> <tbody> <tr> <td align="center" valign="top"> <table cellspacing="0" cellpadding="0" border="0"> <tbody> <tr> <td> </td> </tr> </tbody> </table> <table cellspacing="0" cellpadding="0" border="0" bgcolor="#ffffff" style="border-style:solid; border-collapse: collapse; border-spacing: 0;"> <tbody> <tr> <td align="center"> <table cellspacing="0" cellpadding="0" border="0"> <tbody> <tr> <td align="center"><a href="http://business-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0bmFvY3B0LXlhbW9sc2Nhb3NnYy5lL3RpbXJlZi9lbS9ycnJuaWFpZXMsdGxnaWVpLGUzZHx4bnxlZWY%3D" rel="nofollow noreferrer noopener" target="_blank" title="http://business-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0bmFvY3B0LXlhbW9sc2Nhb3NnYy5lL3RpbXJlZi9lbS9ycnJuaWFpZXMsdGxnaWVpLGUzZHx4bnxlZWY%3D"></a></td> </tr> </tbody> </table> <table cellspacing="0" cellpadding="0" border="0"> <tbody> <tr> <td> </td> </tr> </tbody> </table> <table cellspacing="0" cellpadding="0" border="0"> <tbody> <tr> <td align="left" valign="top" style="font-size:15px;color:#222222;"> <span style="color: rgb(255, 102, 0);"><i>Geben Sie diese Information an den Direktor oder den für Marketing und Umsatzsteigerung verantwortlichen Mitarbeiter Ihrer Firma weiter!</i></span>
</td> </tr> <tr> <td> </td> </tr> </tbody> </table> <table cellspacing="0" cellpadding="0" border="0"> <tbody> <tr> <td style="border-top-style:solid; border-top-width:3px;"> <table cellspacing="0" cellpadding="0" border="0"> <tbody> <tr> <td> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> <table cellspacing="0" cellpadding="0" border="0"> <tbody> <tr> <td align="left" valign="top" style="font-size:15px;color:#222222;"> <p>Hallo,</p><ul> <li>Sie suchen nach Möglichkeiten, den Umsatz Ihre Firma zu steigern?</li>
<table cellspacing="0" cellpadding="0" border="0"> <tbody> <tr> <td align="center" valign="top"> <table cellspacing="0" cellpadding="0" border="0"> <tbody> <tr> <td> </td> </tr> </tbody> </table> <table cellspacing="0" cellpadding="0" border="0" bgcolor="#ffffff" style="border-style:solid; border-collapse: collapse; border-spacing: 0;"> <tbody> <tr> <td align="center"> <table cellspacing="0" cellpadding="0" border="0"> <tbody> <tr> <td align="center"><a href="http://business-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0bmFvY3B0LXlhbW9sc2Nhb3NnYy5lL3RpbXJlZi9lbS9ycnJuaWFpZXMsdGxnaWVpLGUzZHx4bnxlZWY%3D" rel="nofollow noreferrer noopener" target="_blank" title="http://business-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0bmFvY3B0LXlhbW9sc2Nhb3NnYy5lL3RpbXJlZi9lbS9ycnJuaWFpZXMsdGxnaWVpLGUzZHx4bnxlZWY%3D"></a></td> </tr> </tbody> </table> <table cellspacing="0" cellpadding="0" border="0"> <tbody> <tr> <td> </td> </tr> </tbody> </table> <table cellspacing="0" cellpadding="0" border="0"> <tbody> <tr> <td align="left" valign="top" style="font-size:15px;color:#222222;"> <p><span style="color: rgb(255, 102, 0);"><i>Geben Sie diese Information an den Direktor oder den für Marketing und Umsatzsteigerung verantwortlichen Mitarbeiter Ihrer Firma weiter!</i></span></p></td> </tr> <tr> <td> </td> </tr> </tbody> </table> <table cellspacing="0" cellpadding="0" border="0"> <tbody> <tr> <td style="border-top-style:solid; border-top-width:3px;"> <table cellspacing="0" cellpadding="0" border="0"> <tbody> <tr> <td> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> <table cellspacing="0" cellpadding="0" border="0"> <tbody> <tr> <td align="left" valign="top" style="font-size:15px;color:#222222;"> <p>Hallo,</p><ul> <li>Sie suchen nach Möglichkeiten, den Umsatz Ihre Firma zu steigern?</li>
<li>Sie brauchen neue Geschäftskontakte?</li>
<li>Sie sind es leid, Kontaktdaten manuell zu erfassen?</li>
<li>Ihr Kontaktdatenanbieter ist zu teuer oder Sie sind mit seinen Dienstleistungen unzufrieden?</li>
<li>Sie möchten Ihre Kontaktinformationen gern effizienter auf dem neuesten Stand halten?</li> </ul> <p><br>Bei uns können Sie mit nur wenigen Clicks <b>Geschäftskontakte</b> verschiedener Länder erwerben.</p><p>Dies ist eine <b>schnelle und bequeme</b> Methode, um Daten zu einem vernünftigen Preis zu erhalten.</p><p>Alle Daten werden <b>ständig aktualisiert</b>m so dass Sie sich keine Sorgen machen müssen.</p><p>&nbsp;</p></td> </tr> <tr> <td> </td> </tr> </tbody> </table> <table cellspacing="0" cellpadding="0" border="0"> <tbody> <tr> <td align="center"> <table cellspacing="0" cellpadding="0" border="0"> <tbody> <tr> <td><a href="http://business-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0LnNzdXJobGZzZWVsdGEtLm10cmVzb2YvY2VtL2xpZ25pYWlnaV9hbC9zOG1lOXgyOTdzZW1hL2VlL2xwZWxheHB4Q18ubXhzfEhsODh8Y2M%3D" rel="nofollow noreferrer noopener" target="_blank" title="http://business-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0LnNzdXJobGZzZWVsdGEtLm10cmVzb2YvY2VtL2xpZ25pYWlnaV9hbC9zOG1lOXgyOTdzZW1hL2VlL2xwZWxheHB4Q18ubXhzfEhsODh8Y2M%3D"></a></td> <td> </td> <td></td> <td> </td> <td><a href="http://business-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0bmFvY3B0LXlhbW9sc2Nhb3NnYy5lL3RpbXJlZi9lbS9ycnJuaWFpZXMsdGxnaWVpLGUzZHx4bnxlZWY%3D" rel="nofollow noreferrer noopener" target="_blank" title="http://business-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0bmFvY3B0LXlhbW9sc2Nhb3NnYy5lL3RpbXJlZi9lbS9ycnJuaWFpZXMsdGxnaWVpLGUzZHx4bnxlZWY%3D"></a></td> </tr> <tr> <td> </td> </tr> <tr> <td align="left" valign="top" style="font-size:15px;color:#222222;"> <p><a href="http://business-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0LnNzdXJobGZzZWVsdGEtLm10cmVzb2YvY2VtL2xpZ25pYWlnaV9hbC9zOG1lOXgyOTdzZW1hL2VlL2xwZWxheHB4Q18ubXhzfEhsODh8Y2M%3D" rel="nofollow noreferrer noopener" target="_blank" title="http://business-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0LnNzdXJobGZzZWVsdGEtLm10cmVzb2YvY2VtL2xpZ25pYWlnaV9hbC9zOG1lOXgyOTdzZW1hL2VlL2xwZWxheHB4Q18ubXhzfEhsODh8Y2M%3D">XLS-Muster herunterladen<br> </a></p></td> <td> </td> <td align="left" valign="top" style="font-size:15px;color:#222222;"> </td> <td> </td> <td align="left" valign="top" style="font-size:15px;color:#222222;"> <p><a href="http://business-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0bmFvY3B0LXlhbW9sc2Nhb3NnYy5lL3RpbXJlZi9lbS9ycnJuaWFpZXMsdGxnaWVpLGUzZHx4bnxlZWY%3D" rel="nofollow noreferrer noopener" target="_blank" title="http://business-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0bmFvY3B0LXlhbW9sc2Nhb3NnYy5lL3RpbXJlZi9lbS9ycnJuaWFpZXMsdGxnaWVpLGUzZHx4bnxlZWY%3D">Datenbank bestellen<br> </a></p></td> </tr> </tbody> </table> </td> </tr> <tr> <td> </td> </tr> </tbody> </table> <table cellspacing="0" cellpadding="0" border="0"> <tbody> <tr> <td align="left" valign="top" style="font-size:15px;color:#222222;"> <p><span style="color: rgb(255, 102, 0);"><b>Die Anmeldung ist absolut kostenlos und unverbindlich.</b> Sie können die Kataloge gemäß Ihren eigenen Kriterien filtern und ein kostenloses Datenmuster bestellen, sobald Sie sich angemeldet haben.</span><br> </p></td> </tr> <tr> <td> </td> </tr> </tbody> </table> <table cellspacing="0" cellpadding="0" border="0"> <tbody> <tr> <td style="border-top-style:solid; border-top-width:3px;"> <table cellspacing="0" cellpadding="0" border="0"> <tbody> <tr> <td> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> <table cellspacing="0" cellpadding="0" border="0"> <tbody> <tr> <td align="left" valign="top" style="font-size:15px;color:#222222;"> <span style="color: rgb(0, 0, 0);"> <b>Wir haben Datenbanken der folgenden Länder:</b> </span>
<table> <tbody> <tr> <td> <ul> <li><a href="http://business-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0bmFvY3B0LXlhbW9sc2Nhb3NnYy5lL3RpbXJlZi9lbS9ycnJuaWFpZXMsdGxnY25pLGUsdXJ0b3NUQWVpMjZ8fGEx" rel="nofollow noreferrer noopener" target="_blank" title="http://business-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0bmFvY3B0LXlhbW9sc2Nhb3NnYy5lL3RpbXJlZi9lbS9ycnJuaWFpZXMsdGxnY25pLGUsdXJ0b3NUQWVpMjZ8fGEx"><span style="color: rgb(0, 0, 0);">Österreich</span></a></li>
<li><a href="http://business-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0bmFvY3B0LXlhbW9sc2Nhb3NnYy5lL3RpbXJlZi9lbS9ycnJuaWFpZXMsdGxnY25pLGUsdXJ0b3NFQmVpYzR8fGNh" rel="nofollow noreferrer noopener" target="_blank" title="http://business-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0bmFvY3B0LXlhbW9sc2Nhb3NnYy5lL3RpbXJlZi9lbS9ycnJuaWFpZXMsdGxnY25pLGUsdXJ0b3NFQmVpYzR8fGNh"><span style="color: rgb(0, 0, 0);">Belgien</span></a></li>
<li><a href="http://business-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0bmFvY3B0LXlhbW9sc2Nhb3NnYy5lL3RpbXJlZi9lbS9ycnJuaWFpZXMsdGxnY25pLGUsdXJ0b3NZQmVpMGJ8fDAw" rel="nofollow noreferrer noopener" target="_blank" title="http://business-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0bmFvY3B0LXlhbW9sc2Nhb3NnYy5lL3RpbXJlZi9lbS9ycnJuaWFpZXMsdGxnY25pLGUsdXJ0b3NZQmVpMGJ8fDAw"><span style="color: rgb(0, 0, 0);">Belarus</span></a></li> <li><a href="http://business-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0bmFvY3B0LXlhbW9sc2Nhb3NnYy5lL3RpbXJlZi9lbS9ycnJuaWFpZXMsdGxnY25pLGUsdXJ0b3NIQ2VpYjF8fGY4" rel="nofollow noreferrer noopener" target="_blank" title="http://business-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0bmFvY3B0LXlhbW9sc2Nhb3NnYy5lL3RpbXJlZi9lbS9ycnJuaWFpZXMsdGxnY25pLGUsdXJ0b3NIQ2VpYjF8fGY4"><span style="color: rgb(0, 0, 0);">Schweiz</span></a></li>
<li><a href="http://business-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0bmFvY3B0LXlhbW9sc2Nhb3NnYy5lL3RpbXJlZi9lbS9ycnJuaWFpZXMsdGxnY25pLGUsdXJ0b3NaQ2VpMTZ8fDc1" rel="nofollow noreferrer noopener" target="_blank" title="http://business-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0bmFvY3B0LXlhbW9sc2Nhb3NnYy5lL3RpbXJlZi9lbS9ycnJuaWFpZXMsdGxnY25pLGUsdXJ0b3NaQ2VpMTZ8fDc1"><span style="color: rgb(0, 0, 0);">Tschechische Republik</span></a></li>
<li><a href="http://business-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0bmFvY3B0LXlhbW9sc2Nhb3NnYy5lL3RpbXJlZi9lbS9ycnJuaWFpZXMsdGxnY25pLGUsdXJ0b3NFRGVpMDl8fDM1" rel="nofollow noreferrer noopener" target="_blank" title="http://business-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0bmFvY3B0LXlhbW9sc2Nhb3NnYy5lL3RpbXJlZi9lbS9ycnJuaWFpZXMsdGxnY25pLGUsdXJ0b3NFRGVpMDl8fDM1"><span style="color: rgb(0, 0, 0);">Deutschland</span></a></li>
<li><a href="http://business-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0bmFvY3B0LXlhbW9sc2Nhb3NnYy5lL3RpbXJlZi9lbS9ycnJuaWFpZXMsdGxnY25pLGUsdXJ0b3NFRWVpYTd8fGNm" rel="nofollow noreferrer noopener" target="_blank" title="http://business-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0bmFvY3B0LXlhbW9sc2Nhb3NnYy5lL3RpbXJlZi9lbS9ycnJuaWFpZXMsdGxnY25pLGUsdXJ0b3NFRWVpYTd8fGNm"><span style="color: rgb(0, 0, 0);">Estland</span></a></li>
<li><a href="http://business-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0bmFvY3B0LXlhbW9sc2Nhb3NnYy5lL3RpbXJlZi9lbS9ycnJuaWFpZXMsdGxnY25pLGUsdXJ0b3NSRmVpNGN8fDBl" rel="nofollow noreferrer noopener" target="_blank" title="http://business-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0bmFvY3B0LXlhbW9sc2Nhb3NnYy5lL3RpbXJlZi9lbS9ycnJuaWFpZXMsdGxnY25pLGUsdXJ0b3NSRmVpNGN8fDBl"><span style="color: rgb(0, 0, 0);">Frankreich</span></a></li>
<li><a href="http://business-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0bmFvY3B0LXlhbW9sc2Nhb3NnYy5lL3RpbXJlZi9lbS9ycnJuaWFpZXMsdGxnY25pLGUsdXJ0b3NCR2VpNjh8fDA4" rel="nofollow noreferrer noopener" target="_blank" title="http://business-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0bmFvY3B0LXlhbW9sc2Nhb3NnYy5lL3RpbXJlZi9lbS9ycnJuaWFpZXMsdGxnY25pLGUsdXJ0b3NCR2VpNjh8fDA4"><span style="color: rgb(0, 0, 0);">Vereinigtes Königreich</span></a></li>
<li><a href="http://business-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0bmFvY3B0LXlhbW9sc2Nhb3NnYy5lL3RpbXJlZi9lbS9ycnJuaWFpZXMsdGxnY25pLGUsdXJ0b3NVSGVpNDB8fGQx" rel="nofollow noreferrer noopener" target="_blank" title="http://business-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0bmFvY3B0LXlhbW9sc2Nhb3NnYy5lL3RpbXJlZi9lbS9ycnJuaWFpZXMsdGxnY25pLGUsdXJ0b3NVSGVpNDB8fGQx"><span style="color: rgb(0, 0, 0);">Ungarn</span></a></li>
<li><a href="http://business-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0bmFvY3B0LXlhbW9sc2Nhb3NnYy5lL3RpbXJlZi9lbS9ycnJuaWFpZXMsdGxnY25pLGUsdXJ0b3NFSWVpNDd8fGNi" rel="nofollow noreferrer noopener" target="_blank" title="http://business-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0bmFvY3B0LXlhbW9sc2Nhb3NnYy5lL3RpbXJlZi9lbS9ycnJuaWFpZXMsdGxnY25pLGUsdXJ0b3NFSWVpNDd8fGNi"><span style="color: rgb(0, 0, 0);">Irland</span></a></li> </ul> </td> <td> <ul> <li><a href="http://business-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0bmFvY3B0LXlhbW9sc2Nhb3NnYy5lL3RpbXJlZi9lbS9ycnJuaWFpZXMsdGxnY25pLGUsdXJ0b3NUSWVpOTJ8fDU3" rel="nofollow noreferrer noopener" target="_blank" title="http://business-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0bmFvY3B0LXlhbW9sc2Nhb3NnYy5lL3RpbXJlZi9lbS9ycnJuaWFpZXMsdGxnY25pLGUsdXJ0b3NUSWVpOTJ8fDU3"><span style="color: rgb(0, 0, 0);">Italien</span></a></li>
<li><a href="http://business-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0bmFvY3B0LXlhbW9sc2Nhb3NnYy5lL3RpbXJlZi9lbS9ycnJuaWFpZXMsdGxnY25pLGUsdXJ0b3NJTGVpNTF8fDlk" rel="nofollow noreferrer noopener" target="_blank" title="http://business-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0bmFvY3B0LXlhbW9sc2Nhb3NnYy5lL3RpbXJlZi9lbS9ycnJuaWFpZXMsdGxnY25pLGUsdXJ0b3NJTGVpNTF8fDlk"><span style="color: rgb(0, 0, 0);">Liechtenstein</span></a></li>
<li><a href="http://business-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0bmFvY3B0LXlhbW9sc2Nhb3NnYy5lL3RpbXJlZi9lbS9ycnJuaWFpZXMsdGxnY25pLGUsdXJ0b3NUTGVpN2R8fDgw" rel="nofollow noreferrer noopener" target="_blank" title="http://business-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0bmFvY3B0LXlhbW9sc2Nhb3NnYy5lL3RpbXJlZi9lbS9ycnJuaWFpZXMsdGxnY25pLGUsdXJ0b3NUTGVpN2R8fDgw"><span style="color: rgb(0, 0, 0);">Litauen</span></a></li>
<li><a href="http://business-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0bmFvY3B0LXlhbW9sc2Nhb3NnYy5lL3RpbXJlZi9lbS9ycnJuaWFpZXMsdGxnY25pLGUsdXJ0b3NVTGVpNWZ8fGZh" rel="nofollow noreferrer noopener" target="_blank" title="http://business-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0bmFvY3B0LXlhbW9sc2Nhb3NnYy5lL3RpbXJlZi9lbS9ycnJuaWFpZXMsdGxnY25pLGUsdXJ0b3NVTGVpNWZ8fGZh"><span style="color: rgb(0, 0, 0);">Luxemburg</span></a></li>
<li><a href="http://business-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0bmFvY3B0LXlhbW9sc2Nhb3NnYy5lL3RpbXJlZi9lbS9ycnJuaWFpZXMsdGxnY25pLGUsdXJ0b3NWTGVpZWZ8fDE2" rel="nofollow noreferrer noopener" target="_blank" title="http://business-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0bmFvY3B0LXlhbW9sc2Nhb3NnYy5lL3RpbXJlZi9lbS9ycnJuaWFpZXMsdGxnY25pLGUsdXJ0b3NWTGVpZWZ8fDE2"><span style="color: rgb(0, 0, 0);">Lettland</span></a></li>
<li><a href="http://business-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0bmFvY3B0LXlhbW9sc2Nhb3NnYy5lL3RpbXJlZi9lbS9ycnJuaWFpZXMsdGxnY25pLGUsdXJ0b3NMTmVpOTV8fDQw" rel="nofollow noreferrer noopener" target="_blank" title="http://business-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0bmFvY3B0LXlhbW9sc2Nhb3NnYy5lL3RpbXJlZi9lbS9ycnJuaWFpZXMsdGxnY25pLGUsdXJ0b3NMTmVpOTV8fDQw"><span style="color: rgb(0, 0, 0);">Niederlande</span></a></li>
<li><a href="http://business-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0bmFvY3B0LXlhbW9sc2Nhb3NnYy5lL3RpbXJlZi9lbS9ycnJuaWFpZXMsdGxnY25pLGUsdXJ0b3NMUGVpNGV8fDBm" rel="nofollow noreferrer noopener" target="_blank" title="http://business-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0bmFvY3B0LXlhbW9sc2Nhb3NnYy5lL3RpbXJlZi9lbS9ycnJuaWFpZXMsdGxnY25pLGUsdXJ0b3NMUGVpNGV8fDBm"><span style="color: rgb(0, 0, 0);">Polen</span></a></li>
<li><a href="http://business-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0bmFvY3B0LXlhbW9sc2Nhb3NnYy5lL3RpbXJlZi9lbS9ycnJuaWFpZXMsdGxnY25pLGUsdXJ0b3NVUmVpZTV8fGVk" rel="nofollow noreferrer noopener" target="_blank" title="http://business-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0bmFvY3B0LXlhbW9sc2Nhb3NnYy5lL3RpbXJlZi9lbS9ycnJuaWFpZXMsdGxnY25pLGUsdXJ0b3NVUmVpZTV8fGVk"><span style="color: rgb(0, 0, 0);">Russland</span></a></li>
<li><a href="http://business-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0bmFvY3B0LXlhbW9sc2Nhb3NnYy5lL3RpbXJlZi9lbS9ycnJuaWFpZXMsdGxnY25pLGUsdXJ0b3NJU2VpN2R8fGYz" rel="nofollow noreferrer noopener" target="_blank" title="http://business-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0bmFvY3B0LXlhbW9sc2Nhb3NnYy5lL3RpbXJlZi9lbS9ycnJuaWFpZXMsdGxnY25pLGUsdXJ0b3NJU2VpN2R8fGYz"><span style="color: rgb(0, 0, 0);">Slowenien</span></a></li>
<li><a href="http://busine%0A%20ss-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0bmFvY3B0LXlhbW9sc2Nhb3NnYy5lL3RpbXJlZi9lbS9ycnJuaWFpZXMsdGxnY25pLGUsdXJ0b3NLU2VpNjZ8fDQ5" rel="nofollow noreferrer noopener" target="_blank" title="http://busine%0A%20ss-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0bmFvY3B0LXlhbW9sc2Nhb3NnYy5lL3RpbXJlZi9lbS9ycnJuaWFpZXMsdGxnY25pLGUsdXJ0b3NLU2VpNjZ8fDQ5"><span style="color: rgb(0, 0, 0);">Slowakei</span></a></li>
<li><a href="http://business-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0bmFvY3B0LXlhbW9sc2Nhb3NnYy5lL3RpbXJlZi9lbS9ycnJuaWFpZXMsdGxnY25pLGUsdXJ0b3NBVWVpYTd8fDNh" rel="nofollow noreferrer noopener" target="_blank" title="http://business-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0bmFvY3B0LXlhbW9sc2Nhb3NnYy5lL3RpbXJlZi9lbS9ycnJuaWFpZXMsdGxnY25pLGUsdXJ0b3NBVWVpYTd8fDNh"><span style="color: rgb(0, 0, 0);">Ukraine</span></a></li> </ul> </td> </tr> </tbody> </table> </td> </tr> <tr> <td> </td> </tr> </tbody> </table> <table cellspacing="0" cellpadding="0" border="0"> <tbody> <tr> <td style="border-top-style:solid; border-top-width:3px;"> <table cellspacing="0" cellpadding="0" border="0"> <tbody> <tr> <td> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> <table cellspacing="0" cellpadding="0" border="0"> <tbody> <tr> <td align="left" valign="top" style="font-size:15px;color:#222222;"> <p>Anwendungsmöglichkeiten für Geschäftskontakte<br> <br> </p><ul> <li>
<li>Sie möchten Ihre Kontaktinformationen gern effizienter auf dem neuesten Stand halten?</li> </ul> <p><br>Bei uns können Sie mit nur wenigen Clicks <b>Geschäftskontakte</b> verschiedener Länder erwerben.</p><p>Dies ist eine <b>schnelle und bequeme</b> Methode, um Daten zu einem vernünftigen Preis zu erhalten.</p><p>Alle Daten werden <b>ständig aktualisiert</b>m so dass Sie sich keine Sorgen machen müssen.</p><p>&nbsp;</p></td> </tr> <tr> <td> </td> </tr> </tbody> </table> <table cellspacing="0" cellpadding="0" border="0"> <tbody> <tr> <td align="center"> <table cellspacing="0" cellpadding="0" border="0"> <tbody> <tr> <td><a href="http://business-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0LnNzdXJobGZzZWVsdGEtLm10cmVzb2YvY2VtL2xpZ25pYWlnaV9hbC9zOG1lOXgyOTdzZW1hL2VlL2xwZWxheHB4Q18ubXhzfEhsODh8Y2M%3D" rel="nofollow noreferrer noopener" target="_blank" title="http://business-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0LnNzdXJobGZzZWVsdGEtLm10cmVzb2YvY2VtL2xpZ25pYWlnaV9hbC9zOG1lOXgyOTdzZW1hL2VlL2xwZWxheHB4Q18ubXhzfEhsODh8Y2M%3D"></a></td> <td> </td> <td></td> <td> </td> <td><a href="http://business-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0bmFvY3B0LXlhbW9sc2Nhb3NnYy5lL3RpbXJlZi9lbS9ycnJuaWFpZXMsdGxnaWVpLGUzZHx4bnxlZWY%3D" rel="nofollow noreferrer noopener" target="_blank" title="http://business-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0bmFvY3B0LXlhbW9sc2Nhb3NnYy5lL3RpbXJlZi9lbS9ycnJuaWFpZXMsdGxnaWVpLGUzZHx4bnxlZWY%3D"></a></td> </tr> <tr> <td> </td> </tr> <tr> <td align="left" valign="top" style="font-size:15px;color:#222222;"> <p><a href="http://business-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0LnNzdXJobGZzZWVsdGEtLm10cmVzb2YvY2VtL2xpZ25pYWlnaV9hbC9zOG1lOXgyOTdzZW1hL2VlL2xwZWxheHB4Q18ubXhzfEhsODh8Y2M%3D" rel="nofollow noreferrer noopener" target="_blank" title="http://business-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0LnNzdXJobGZzZWVsdGEtLm10cmVzb2YvY2VtL2xpZ25pYWlnaV9hbC9zOG1lOXgyOTdzZW1hL2VlL2xwZWxheHB4Q18ubXhzfEhsODh8Y2M%3D">XLS-Muster herunterladen<br> </a></p></td> <td> </td> <td align="left" valign="top" style="font-size:15px;color:#222222;"> </td> <td> </td> <td align="left" valign="top" style="font-size:15px;color:#222222;"> <p><a href="http://business-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0bmFvY3B0LXlhbW9sc2Nhb3NnYy5lL3RpbXJlZi9lbS9ycnJuaWFpZXMsdGxnaWVpLGUzZHx4bnxlZWY%3D" rel="nofollow noreferrer noopener" target="_blank" title="http://business-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0bmFvY3B0LXlhbW9sc2Nhb3NnYy5lL3RpbXJlZi9lbS9ycnJuaWFpZXMsdGxnaWVpLGUzZHx4bnxlZWY%3D">Datenbank bestellen<br> </a></p></td> </tr> </tbody> </table> </td> </tr> <tr> <td> </td> </tr> </tbody> </table> <table cellspacing="0" cellpadding="0" border="0"> <tbody> <tr> <td align="left" valign="top" style="font-size:15px;color:#222222;"> <p><span style="color: rgb(255, 102, 0);"><b>Die Anmeldung ist absolut kostenlos und unverbindlich.</b> Sie können die Kataloge gemäß Ihren eigenen Kriterien filtern und ein kostenloses Datenmuster bestellen, sobald Sie sich angemeldet haben.</span><br> </p></td> </tr> <tr> <td> </td> </tr> </tbody> </table> <table cellspacing="0" cellpadding="0" border="0"> <tbody> <tr> <td style="border-top-style:solid; border-top-width:3px;"> <table cellspacing="0" cellpadding="0" border="0"> <tbody> <tr> <td> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> <table cellspacing="0" cellpadding="0" border="0"> <tbody> <tr> <td align="left" valign="top" style="font-size:15px;color:#222222;"> <p> <b>Wir haben Datenbanken der folgenden Länder:</b> </p><table> <tbody> <tr> <td> <ul> <li><a href="http://business-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0bmFvY3B0LXlhbW9sc2Nhb3NnYy5lL3RpbXJlZi9lbS9ycnJuaWFpZXMsdGxnY25pLGUsdXJ0b3NUQWVpMjZ8fGEx" rel="nofollow noreferrer noopener" target="_blank" title="http://business-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0bmFvY3B0LXlhbW9sc2Nhb3NnYy5lL3RpbXJlZi9lbS9ycnJuaWFpZXMsdGxnY25pLGUsdXJ0b3NUQWVpMjZ8fGEx">Österreich</a></li>
<li><a href="http://business-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0bmFvY3B0LXlhbW9sc2Nhb3NnYy5lL3RpbXJlZi9lbS9ycnJuaWFpZXMsdGxnY25pLGUsdXJ0b3NFQmVpYzR8fGNh" rel="nofollow noreferrer noopener" target="_blank" title="http://business-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0bmFvY3B0LXlhbW9sc2Nhb3NnYy5lL3RpbXJlZi9lbS9ycnJuaWFpZXMsdGxnY25pLGUsdXJ0b3NFQmVpYzR8fGNh">Belgien</a></li>
<li><a href="http://business-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0bmFvY3B0LXlhbW9sc2Nhb3NnYy5lL3RpbXJlZi9lbS9ycnJuaWFpZXMsdGxnY25pLGUsdXJ0b3NZQmVpMGJ8fDAw" rel="nofollow noreferrer noopener" target="_blank" title="http://business-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0bmFvY3B0LXlhbW9sc2Nhb3NnYy5lL3RpbXJlZi9lbS9ycnJuaWFpZXMsdGxnY25pLGUsdXJ0b3NZQmVpMGJ8fDAw">Belarus</a></li> <li><a href="http://business-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0bmFvY3B0LXlhbW9sc2Nhb3NnYy5lL3RpbXJlZi9lbS9ycnJuaWFpZXMsdGxnY25pLGUsdXJ0b3NIQ2VpYjF8fGY4" rel="nofollow noreferrer noopener" target="_blank" title="http://business-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0bmFvY3B0LXlhbW9sc2Nhb3NnYy5lL3RpbXJlZi9lbS9ycnJuaWFpZXMsdGxnY25pLGUsdXJ0b3NIQ2VpYjF8fGY4">Schweiz</a></li>
<li><a href="http://business-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0bmFvY3B0LXlhbW9sc2Nhb3NnYy5lL3RpbXJlZi9lbS9ycnJuaWFpZXMsdGxnY25pLGUsdXJ0b3NaQ2VpMTZ8fDc1" rel="nofollow noreferrer noopener" target="_blank" title="http://business-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0bmFvY3B0LXlhbW9sc2Nhb3NnYy5lL3RpbXJlZi9lbS9ycnJuaWFpZXMsdGxnY25pLGUsdXJ0b3NaQ2VpMTZ8fDc1">Tschechische Republik</a></li>
<li><a href="http://business-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0bmFvY3B0LXlhbW9sc2Nhb3NnYy5lL3RpbXJlZi9lbS9ycnJuaWFpZXMsdGxnY25pLGUsdXJ0b3NFRGVpMDl8fDM1" rel="nofollow noreferrer noopener" target="_blank" title="http://business-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0bmFvY3B0LXlhbW9sc2Nhb3NnYy5lL3RpbXJlZi9lbS9ycnJuaWFpZXMsdGxnY25pLGUsdXJ0b3NFRGVpMDl8fDM1">Deutschland</a></li>
<li><a href="http://business-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0bmFvY3B0LXlhbW9sc2Nhb3NnYy5lL3RpbXJlZi9lbS9ycnJuaWFpZXMsdGxnY25pLGUsdXJ0b3NFRWVpYTd8fGNm" rel="nofollow noreferrer noopener" target="_blank" title="http://business-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0bmFvY3B0LXlhbW9sc2Nhb3NnYy5lL3RpbXJlZi9lbS9ycnJuaWFpZXMsdGxnY25pLGUsdXJ0b3NFRWVpYTd8fGNm">Estland</a></li>
<li><a href="http://business-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0bmFvY3B0LXlhbW9sc2Nhb3NnYy5lL3RpbXJlZi9lbS9ycnJuaWFpZXMsdGxnY25pLGUsdXJ0b3NSRmVpNGN8fDBl" rel="nofollow noreferrer noopener" target="_blank" title="http://business-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0bmFvY3B0LXlhbW9sc2Nhb3NnYy5lL3RpbXJlZi9lbS9ycnJuaWFpZXMsdGxnY25pLGUsdXJ0b3NSRmVpNGN8fDBl">Frankreich</a></li>
<li><a href="http://business-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0bmFvY3B0LXlhbW9sc2Nhb3NnYy5lL3RpbXJlZi9lbS9ycnJuaWFpZXMsdGxnY25pLGUsdXJ0b3NCR2VpNjh8fDA4" rel="nofollow noreferrer noopener" target="_blank" title="http://business-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0bmFvY3B0LXlhbW9sc2Nhb3NnYy5lL3RpbXJlZi9lbS9ycnJuaWFpZXMsdGxnY25pLGUsdXJ0b3NCR2VpNjh8fDA4">Vereinigtes Königreich</a></li>
<li><a href="http://business-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0bmFvY3B0LXlhbW9sc2Nhb3NnYy5lL3RpbXJlZi9lbS9ycnJuaWFpZXMsdGxnY25pLGUsdXJ0b3NVSGVpNDB8fGQx" rel="nofollow noreferrer noopener" target="_blank" title="http://business-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0bmFvY3B0LXlhbW9sc2Nhb3NnYy5lL3RpbXJlZi9lbS9ycnJuaWFpZXMsdGxnY25pLGUsdXJ0b3NVSGVpNDB8fGQx">Ungarn</a></li>
<li><a href="http://business-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0bmFvY3B0LXlhbW9sc2Nhb3NnYy5lL3RpbXJlZi9lbS9ycnJuaWFpZXMsdGxnY25pLGUsdXJ0b3NFSWVpNDd8fGNi" rel="nofollow noreferrer noopener" target="_blank" title="http://business-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0bmFvY3B0LXlhbW9sc2Nhb3NnYy5lL3RpbXJlZi9lbS9ycnJuaWFpZXMsdGxnY25pLGUsdXJ0b3NFSWVpNDd8fGNi">Irland</a></li> </ul> </td> <td> <ul> <li><a href="http://business-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0bmFvY3B0LXlhbW9sc2Nhb3NnYy5lL3RpbXJlZi9lbS9ycnJuaWFpZXMsdGxnY25pLGUsdXJ0b3NUSWVpOTJ8fDU3" rel="nofollow noreferrer noopener" target="_blank" title="http://business-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0bmFvY3B0LXlhbW9sc2Nhb3NnYy5lL3RpbXJlZi9lbS9ycnJuaWFpZXMsdGxnY25pLGUsdXJ0b3NUSWVpOTJ8fDU3">Italien</a></li>
<li><a href="http://business-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0bmFvY3B0LXlhbW9sc2Nhb3NnYy5lL3RpbXJlZi9lbS9ycnJuaWFpZXMsdGxnY25pLGUsdXJ0b3NJTGVpNTF8fDlk" rel="nofollow noreferrer noopener" target="_blank" title="http://business-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0bmFvY3B0LXlhbW9sc2Nhb3NnYy5lL3RpbXJlZi9lbS9ycnJuaWFpZXMsdGxnY25pLGUsdXJ0b3NJTGVpNTF8fDlk">Liechtenstein</a></li>
<li><a href="http://business-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0bmFvY3B0LXlhbW9sc2Nhb3NnYy5lL3RpbXJlZi9lbS9ycnJuaWFpZXMsdGxnY25pLGUsdXJ0b3NUTGVpN2R8fDgw" rel="nofollow noreferrer noopener" target="_blank" title="http://business-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0bmFvY3B0LXlhbW9sc2Nhb3NnYy5lL3RpbXJlZi9lbS9ycnJuaWFpZXMsdGxnY25pLGUsdXJ0b3NUTGVpN2R8fDgw">Litauen</a></li>
<li><a href="http://business-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0bmFvY3B0LXlhbW9sc2Nhb3NnYy5lL3RpbXJlZi9lbS9ycnJuaWFpZXMsdGxnY25pLGUsdXJ0b3NVTGVpNWZ8fGZh" rel="nofollow noreferrer noopener" target="_blank" title="http://business-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0bmFvY3B0LXlhbW9sc2Nhb3NnYy5lL3RpbXJlZi9lbS9ycnJuaWFpZXMsdGxnY25pLGUsdXJ0b3NVTGVpNWZ8fGZh">Luxemburg</a></li>
<li><a href="http://business-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0bmFvY3B0LXlhbW9sc2Nhb3NnYy5lL3RpbXJlZi9lbS9ycnJuaWFpZXMsdGxnY25pLGUsdXJ0b3NWTGVpZWZ8fDE2" rel="nofollow noreferrer noopener" target="_blank" title="http://business-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0bmFvY3B0LXlhbW9sc2Nhb3NnYy5lL3RpbXJlZi9lbS9ycnJuaWFpZXMsdGxnY25pLGUsdXJ0b3NWTGVpZWZ8fDE2">Lettland</a></li>
<li><a href="http://business-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0bmFvY3B0LXlhbW9sc2Nhb3NnYy5lL3RpbXJlZi9lbS9ycnJuaWFpZXMsdGxnY25pLGUsdXJ0b3NMTmVpOTV8fDQw" rel="nofollow noreferrer noopener" target="_blank" title="http://business-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0bmFvY3B0LXlhbW9sc2Nhb3NnYy5lL3RpbXJlZi9lbS9ycnJuaWFpZXMsdGxnY25pLGUsdXJ0b3NMTmVpOTV8fDQw">Niederlande</a></li>
<li><a href="http://business-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0bmFvY3B0LXlhbW9sc2Nhb3NnYy5lL3RpbXJlZi9lbS9ycnJuaWFpZXMsdGxnY25pLGUsdXJ0b3NMUGVpNGV8fDBm" rel="nofollow noreferrer noopener" target="_blank" title="http://business-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0bmFvY3B0LXlhbW9sc2Nhb3NnYy5lL3RpbXJlZi9lbS9ycnJuaWFpZXMsdGxnY25pLGUsdXJ0b3NMUGVpNGV8fDBm">Polen</a></li>
<li><a href="http://business-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0bmFvY3B0LXlhbW9sc2Nhb3NnYy5lL3RpbXJlZi9lbS9ycnJuaWFpZXMsdGxnY25pLGUsdXJ0b3NVUmVpZTV8fGVk" rel="nofollow noreferrer noopener" target="_blank" title="http://business-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0bmFvY3B0LXlhbW9sc2Nhb3NnYy5lL3RpbXJlZi9lbS9ycnJuaWFpZXMsdGxnY25pLGUsdXJ0b3NVUmVpZTV8fGVk">Russland</a></li>
<li><a href="http://business-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0bmFvY3B0LXlhbW9sc2Nhb3NnYy5lL3RpbXJlZi9lbS9ycnJuaWFpZXMsdGxnY25pLGUsdXJ0b3NJU2VpN2R8fGYz" rel="nofollow noreferrer noopener" target="_blank" title="http://business-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0bmFvY3B0LXlhbW9sc2Nhb3NnYy5lL3RpbXJlZi9lbS9ycnJuaWFpZXMsdGxnY25pLGUsdXJ0b3NJU2VpN2R8fGYz">Slowenien</a></li>
<li><a href="http://busine%0A%20ss-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0bmFvY3B0LXlhbW9sc2Nhb3NnYy5lL3RpbXJlZi9lbS9ycnJuaWFpZXMsdGxnY25pLGUsdXJ0b3NLU2VpNjZ8fDQ5" rel="nofollow noreferrer noopener" target="_blank" title="http://busine%0A%20ss-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0bmFvY3B0LXlhbW9sc2Nhb3NnYy5lL3RpbXJlZi9lbS9ycnJuaWFpZXMsdGxnY25pLGUsdXJ0b3NLU2VpNjZ8fDQ5">Slowakei</a></li>
<li><a href="http://business-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0bmFvY3B0LXlhbW9sc2Nhb3NnYy5lL3RpbXJlZi9lbS9ycnJuaWFpZXMsdGxnY25pLGUsdXJ0b3NBVWVpYTd8fDNh" rel="nofollow noreferrer noopener" target="_blank" title="http://business-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0bmFvY3B0LXlhbW9sc2Nhb3NnYy5lL3RpbXJlZi9lbS9ycnJuaWFpZXMsdGxnY25pLGUsdXJ0b3NBVWVpYTd8fDNh">Ukraine</a></li> </ul> </td> </tr> </tbody> </table> </td> </tr> <tr> <td> </td> </tr> </tbody> </table> <table cellspacing="0" cellpadding="0" border="0"> <tbody> <tr> <td style="border-top-style:solid; border-top-width:3px;"> <table cellspacing="0" cellpadding="0" border="0"> <tbody> <tr> <td> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> <table cellspacing="0" cellpadding="0" border="0"> <tbody> <tr> <td align="left" valign="top" style="font-size:15px;color:#222222;"> <p>Anwendungsmöglichkeiten für Geschäftskontakte<br> <br> </p><ul> <li>
<i>Newsletter senden</i> - Senden von Werbung per E-Mail (besonders effizient).</li>
<li>
<i>Telemarketing</i> - Telefonwerbung.</li>
@ -40,10 +38,7 @@ body: |-
<li>
<i>Gezielte Werbung</i> - Briefpostwerbung.</li>
<li>
<i>Marktforschung</i> - Telefonumfragen zur Erforschung Ihrer Produkte oder Dienstleistungen.</li> </ul> <p>&nbsp;</p><p>Sie können <b>Abschnitte wählen (filtern)</b> Empfänger gemäß Tätigkeitsbereichen und Standort der Firmen, um die Effizienz Ihrer Werbemaßnahmen zu erhöhen.</p><p>&nbsp;</p></td> </tr> <tr> <td> </td> </tr> </tbody> </table> <table cellspacing="0" cellpadding="0" border="0"> <tbody> <tr> <td style="border-top-style:solid; border-top-width:3px;"> <table cellspacing="0" cellpadding="0" border="0"> <tbody> <tr> <td> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> <table cellspacing="0" cellpadding="0" border="0"> <tbody> <tr> <td align="left" valign="top" style="font-size:15px;color:#222222;"> <span style="color: rgb(255, 0, 0);">Für jeden Kauf von <b>2016-11-05 23:59:59</b> </span>
<span style="color: rgb(255, 0, 0);">wir gewähren <b>30%</b> Rabatt</span>
<span style="color: rgb(255, 0, 0);"><b>RABATTCODE: WZ2124DD</b></span>
</td> </tr> <tr> <td> </td> </tr> </tbody> </table> <table cellspacing="0" cellpadding="0" border="0"> <tbody> <tr> <td style="border-top-style:solid; border-top-width:3px;"> <table cellspacing="0" cellpadding="0" border="0"> <tbody> <tr> <td> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> <table cellspacing="0" cellpadding="0" border="0"> <tbody> <tr> <td align="left" valign="top" style="font-size:15px;color:#222222;"> <p><b>Bestellen Sie online bei:</b><br> </p><p><a href="http://business-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0bmFvY3B0LXlhbW9sc2Nhb3NnYy5lL3RpbXJlZi9lbS9ycnJuaWFpZXMsdGxnaWVpLGUzZHx4bnxlZWY%3D" rel="nofollow noreferrer noopener" target="_blank" title="http://business-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0bmFvY3B0LXlhbW9sc2Nhb3NnYy5lL3RpbXJlZi9lbS9ycnJuaWFpZXMsdGxnaWVpLGUzZHx4bnxlZWY%3D">company-catalogs.com</a><br> </p><p><b>Für weitere Informationen:</b><br> </p><p>E-Mail: databases.en@example.com<br> Telefon: +370-52-071554 (languages: EN, PL, RU, LT)</p></td> </tr> <tr> <td> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> <br> </td> </tr> </tbody>
<i>Marktforschung</i> - Telefonumfragen zur Erforschung Ihrer Produkte oder Dienstleistungen.</li> </ul> <p>&nbsp;</p><p><span style="color: rgb(31, 114, 70);">Sie können <b>Abschnitte wählen (filtern)</b> Empfänger gemäß Tätigkeitsbereichen und Standort der Firmen, um die Effizienz Ihrer Werbemaßnahmen zu erhöhen.</span></p><p>&nbsp;</p></td> </tr> <tr> <td> </td> </tr> </tbody> </table> <table cellspacing="0" cellpadding="0" border="0"> <tbody> <tr> <td style="border-top-style:solid; border-top-width:3px;"> <table cellspacing="0" cellpadding="0" border="0"> <tbody> <tr> <td> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> <table cellspacing="0" cellpadding="0" border="0"> <tbody> <tr> <td align="left" valign="top" style="font-size:15px;color:#222222;"> <p><span style="color: rgb(255, 0, 0);">Für jeden Kauf von <b>2016-11-05 23:59:59</b> </span></p><p><span style="color: rgb(255, 0, 0);">wir gewähren <b>30%</b> Rabatt</span></p><p><span style="color: rgb(255, 0, 0);"><b>RABATTCODE: WZ2124DD</b></span></p></td> </tr> <tr> <td> </td> </tr> </tbody> </table> <table cellspacing="0" cellpadding="0" border="0"> <tbody> <tr> <td style="border-top-style:solid; border-top-width:3px;"> <table cellspacing="0" cellpadding="0" border="0"> <tbody> <tr> <td> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> <table cellspacing="0" cellpadding="0" border="0"> <tbody> <tr> <td align="left" valign="top" style="font-size:15px;color:#222222;"> <p><b>Bestellen Sie online bei:</b><br> </p><p><a href="http://business-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0bmFvY3B0LXlhbW9sc2Nhb3NnYy5lL3RpbXJlZi9lbS9ycnJuaWFpZXMsdGxnaWVpLGUzZHx4bnxlZWY%3D" rel="nofollow noreferrer noopener" target="_blank" title="http://business-catalogs.example.com/ODtpbGs5MWIzbjUyYzExLTA4Yy06Mmg7N3AvL3R0bmFvY3B0LXlhbW9sc2Nhb3NnYy5lL3RpbXJlZi9lbS9ycnJuaWFpZXMsdGxnaWVpLGUzZHx4bnxlZWY%3D">company-catalogs.com</a><br> </p><p><b>Für weitere Informationen:</b><br> </p><p>E-Mail: databases.en@example.com<br> Telefon: +370-52-071554 (languages: EN, PL, RU, LT)</p></td> </tr> <tr> <td> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> <br> </td> </tr> </tbody>
</table>
</td></tr></table>
<br>Unsubscribe from newsletter: <a href="http://business-catalogs.example.com/c2JudXVlcmNic2I4MWk7MTgxOTMyNS1jMmMtNzA%3D" rel="nofollow noreferrer noopener" target="_blank" title="http://business-catalogs.example.com/c2JudXVlcmNic2I4MWk7MTgxOTMyNS1jMmMtNzA%3D">Click here</a>

View file

@ -1998,7 +1998,7 @@ body: |-
<tr><td> </td></tr>
<tr><td><table bgcolor="#eeeeee" cellpadding="0" cellspacing="0" border="0"><tr><td valign="top"><table cellspacing="0" cellpadding="0" border="0">
<tr><td><table bgcolor="#093355" cellspacing="0" cellpadding="8" border="0"><tr>
<td><span style=" color: #ffffff; color: #ffffff;"><b>Besuchen Sie uns auf:</b></span></td>
<td><b>Besuchen Sie uns auf:</b></td>
<td align="right"><table cellspacing="0" cellpadding="0" border="0"><tr>
<td><a href="https://www.facebook.com/Examplel.GmbH" rel="nofollow noreferrer noopener" target="_blank" title="https://www.facebook.com/Examplel.GmbH"></a></td>
<td></td>

View file

@ -2,8 +2,9 @@
from: Smith Sepp <smith@example.com>
from_email: smith@example.com
from_display_name: Smith Sepp
to: info@example.com
subject: Gruß aus Oberalteich
content_type: text/html
body: |-
<div>
<p>Herzliche Grüße aus Oberalteich sendet Herrn Smith</p><p>&nbsp;</p><p>Sepp Smith - Dipl.Ing. agr. (FH)</p><p>Geschäftsführer der example Straubing-Bogen</p><p>Klosterhof 1 | 94327 Bogen-Oberalteich</p><p>Tel: 09422-505601 | Fax: 09422-505620</p><p>Internet: <a href="http://example-straubing-bogen.de/" rel="nofollow noreferrer noopener" target="_blank">http://example-straubing-bogen.de</a></p><p>Facebook: <a href="http://facebook.de/examplesrbog" rel="nofollow noreferrer noopener" target="_blank">http://facebook.de/examplesrbog</a></p><p><b><img border="0" src="cid:image001.jpg@01CDB132.D8A510F0" alt="Beschreibung: Beschreibung: efqmLogo" style="width:60px;height:19px;"><img border="0" src="cid:image000.jpg@01CDB132.D8A510F0" alt="Beschreibung: Beschreibung: efqmLogo" style="width:60px;height:19px;"></b><b> - European Foundation für Quality Management</b></p><p>&nbsp;</p></div>
<p>Herzliche Grüße aus Oberalteich sendet Herrn Smith</p><p>&nbsp;</p><p>Sepp Smith - Dipl.Ing. agr. (FH)</p><p>Geschäftsführer der example Straubing-Bogen</p><p>Klosterhof 1 | 94327 Bogen-Oberalteich</p><p>Tel: 09422-505601 | Fax: 09422-505620</p><p>Internet: <a href="http://example-straubing-bogen.de/" rel="nofollow noreferrer noopener" target="_blank"><span style="color:blue;">http://example-straubing-bogen.de</span></a></p><p>Facebook: <a href="http://facebook.de/examplesrbog" rel="nofollow noreferrer noopener" target="_blank"><span lang="EN-US" style="color:blue;">http://facebook.de/examplesrbog</span></a></p><p><b><span style="color:navy;"><img border="0" src="cid:image001.jpg@01CDB132.D8A510F0" alt="Beschreibung: Beschreibung: efqmLogo" style="width:60px;height:19px;"><img border="0" src="cid:image000.jpg@01CDB132.D8A510F0" alt="Beschreibung: Beschreibung: efqmLogo" style="width:60px;height:19px;"></span></b><b><span lang="EN-US" style="color:navy;"> - European Foundation für Quality Management</span></b></p><p>&nbsp;</p></div>
content_type: text/html

View file

@ -2,15 +2,16 @@
from: xxxxx@xxxxx.cz
from_email: xxxxx@xxxxx.cz
from_display_name: ''
subject: Contact from Server
to: helpdek@xxxxx.cz
subject: Contact from Server
body: 'Contact form Odeslano dne: Čtvrtek 2. srpna 2018 16:58.28 Uzivatel: Jmeno:
Peter E-mail: xxxxx@xxxxxx.cz Problem: jine Contact form<br><br> Odeslano dne: Čtvrtek
2. srpna 2018 16:58.28<br><br> Uzivatel: <br> Jmeno: <b>Peter</b><br> E-mail: <b>xxxxx@xxxxx.cz</b><br>
Problem: <b>jine</b><br><br> Text: <b>Po zavolání uvádí, že garáž není jeho, ale
strýce. Dále již nezvedá telefon a na SMS zprávy neodpovídá. Když jsem dojel na
místo a zazvonil. Jsem přesvědčen, že tato osoba vyvíjí činnost v oblasti nemovitostí.
Dále mlžení a zapírání své osoby coby statutárního orgánu společnosti, kterou zastupuje,
nesvědčí o seriozním jednání, ale spíše o protiprávním. Jeho jednáním mi mimo jiné
vznikly zbytečné finanční náklady a čas</b>'
Peter E-mail: xxxxx@xxxxxx.cz Problem: jine <span style="color: #c0c0c0;">Contact
form</span><br><br> Odeslano dne: Čtvrtek 2. srpna 2018 16:58.28<br><br> Uzivatel:
<br> Jmeno: <b>Peter</b><br> E-mail: <b>xxxxx@xxxxx.cz</b><br> Problem: <b>jine</b><br><br>
Text: <b>Po zavolání uvádí, že garáž není jeho, ale strýce. Dále již nezvedá telefon
a na SMS zprávy neodpovídá. Když jsem dojel na místo a zazvonil. Jsem přesvědčen,
že tato osoba vyvíjí činnost v oblasti nemovitostí. Dále mlžení a zapírání své osoby
coby statutárního orgánu společnosti, kterou zastupuje, nesvědčí o seriozním jednání,
ale spíše o protiprávním. Jeho jednáním mi mimo jiné vznikly zbytečné finanční náklady
a čas</b>'
content_type: text/html

View file

@ -6,10 +6,10 @@ to: to@example.com
subject: 'FW: Tax Invoice INX4183'
body: |-
<div>
<p>Goeie dag,</p><p>&nbsp;</p><p>Jammer Janette hierdie is n fout. Moet asb nie deurstuur medies toe nie. Die pasient het klaar betaal.</p><p>Die invoice is verkeerde persoon, ek stuur die korrekte een.</p><p>&nbsp;</p><p>Dankie</p><p>&nbsp;</p><div>
<p><b>Chantel Wilken</b></p><p><b>John Smith</b></p><p><b>Tel: 053-8311646</b></p><p><b> : 053-8311710</b></p><p><b>Fax to e-mail: 0865586973</b></p><p><b>Fax to e-mail: 0865665137</b></p></div><p>&nbsp;</p><div>
<span class="js-signatureMarker"></span><p><b>From:</b> Profsen Lab [mailto:from@example.com] <br><b>Sent:</b> Wednesday, 06 March 2019 08:52<br><b>To:</b> to@example.com<br><b>Subject:</b> FW: Tax Invoice INX4183</p></div><p>&nbsp;</p><div>
<p><b>Chantel Wilken</b></p><p><b>John Smith</b></p><p><b>Tel: 053-8311646</b></p><p><b> : 053-8311710</b></p><p><b>Fax to e-mail: 0865586973</b></p><p><b>Fax to e-mail: 0865665137</b></p></div><p>&nbsp;</p><div>
<p><span style="color:#1f497d;">Goeie dag,</span></p><p><span style="color:#1f497d;"><p>&nbsp;</p></span></p><p><span style="color:#1f497d;">Jammer Janette hierdie is n fout. Moet asb nie deurstuur medies toe nie. Die pasient het klaar betaal.</span></p><p><span style="color:#1f497d;">Die invoice is verkeerde persoon, ek stuur die korrekte een.</span></p><p><span style="color:#1f497d;"><p>&nbsp;</p></span></p><p><span style="color:#1f497d;">Dankie</span></p><p><span style="color:#1f497d;"><p>&nbsp;</p></span></p><p><span style="color:#1f497d;"><p>&nbsp;</p></span></p><div>
<p><b><span style="color:#403152;">Chantel Wilken</span></b></p><p><b><span style="color:#403152;">John Smith</span></b></p><p><b><span style="color:#403152;">Tel: 053-8311646</span></b></p><p><b><span style="color:#403152;"> : 053-8311710</span></b></p><p><b><span style="color:#403152;">Fax to e-mail: 0865586973</span></b></p><p><b><span style="color:#403152;">Fax to e-mail: 0865665137</span></b><b><span style="color:#403152;"></span></b></p></div><p><span style="color:#1f497d;"><p>&nbsp;</p></span></p><div>
<span class="js-signatureMarker"></span><p><b>From:</b> Profsen Lab [mailto:from@example.com] <br><b>Sent:</b> Wednesday, 06 March 2019 08:52<br><b>To:</b> to@example.com<br><b>Subject:</b> FW: Tax Invoice INX4183</p></div><p>&nbsp;</p><p><span style="color:#1f497d;"><p>&nbsp;</p></span></p><p><span style="color:#1f497d;"><p>&nbsp;</p></span></p><div>
<p><b><span style="color:#403152;">Chantel Wilken</span></b></p><p><b><span style="color:#403152;">John Smith</span></b></p><p><b><span style="color:#403152;">Tel: 053-8311646</span></b></p><p><b><span style="color:#403152;"> : 053-8311710</span></b></p><p><b><span style="color:#403152;">Fax to e-mail: 0865586973</span></b></p><p><b><span style="color:#403152;">Fax to e-mail: 0865665137</span></b><b><span style="color:#403152;"></span></b></p></div><p><span style="color:#1f497d;"><p>&nbsp;</p></span></p><div>
<p><b>From:</b> Profsen Lab %5Bmailto:from@example.com%5D <br><b>Sent:</b> Monday, 04 March 2019 12:41<br><b>To:</b> from@example.com<br><b>Subject:</b> Tax Invoice INX4183</p></div><p>&nbsp;</p><p>Tax Invoice INX4183 from Shammah Dental BK t/a John Smith</p><p>&nbsp;</p></div>
content_type: text/html
attachments:

View file

@ -685,9 +685,10 @@ Some Text",
},
1 => {
content_type: 'text/html',
body: %{_________________________________________________________________________________Please beth saw his head <br>
body: %{<span style="color:#f9f8f7;">_________________________________________________________________________________Please beth saw his head</span>
<br>
<div>
<table border="0" cellspacing="5" style="color:#e0e7e8; background-color:#e3efef; font-size:1px;">
<table border="0" cellspacing="5" style="color:#e0e7e8; background-color:#e3efef;">
<tr>
<td colspan="2">9õh<span style="color:#f18246;">H</span>3ÿo<span style="color:#f18246;">I</span>Úõ´<span style="color:#f18246;">G</span>ÿi<span style="color:#f18246;">H</span>±6u<span style="color:#f18246;">-</span>û◊N<span style="color:#f18246;">Q</span>4ùä<span style="color:#f18246;">U</span>¹aw<span style="color:#f18246;">A</span>q¹J<span style="color:#f18246;">L</span>ZμÒ<span style="color:#f18246;">I</span>icg<span style="color:#f18246;">T</span>1ζ2<span style="color:#f18246;">Y</span>7t<span style="color:#f18246;"> </span>63<span style="color:#f18246;">M</span>ñ36<span style="color:#f18246;">E</span>ßÝ→<span style="color:#f18246;">D</span><span style="color:#f18246;">I</span>048<span style="color:#f18246;">C</span>vJ9<span style="color:#f18246;">A</span>↑3i<span style="color:#f18246;">T</span>c4É<span style="color:#f18246;">I</span>ΥvX<span style="color:#f18246;">O</span>50ñ<span style="color:#f18246;">N</span>ÁFJ<span style="color:#f18246;">S</span>ð­r<span style="color:#f18246;"> </span>154<span style="color:#f18246;">F</span>1HP<span style="color:#f18246;">O</span>À£C<span style="color:#f18246;">R</span>xZp<span style="color:#f18246;"> </span>tLî<span style="color:#f18246;">T</span>9öX<span style="color:#f18246;">H</span>1b3<span style="color:#f18246;">E</span>s±W<span style="color:#f18246;"> </span>mNà<span style="color:#f18246;">B</span>g3õ<span style="color:#f18246;">E</span>bPŒ<span style="color:#f18246;">S</span>ú<span style="color:#f18246;">T</span>óY4<span style="color:#f18246;"> </span>sUÖ<span style="color:#f18246;">P</span>ÒζΔ<span style="color:#f18246;">R</span>Fkc<span style="color:#f18246;">I</span>Õ1™<span style="color:#f18246;">C</span>ÓZ3<span style="color:#f18246;">E</span>ΛRq<span style="color:#f18246;">!</span>Cass is good to ask what that</td>
</tr>
@ -763,7 +764,8 @@ Some Text",
<tr>
<td colspan="2">¬Û<span style="color:#18136c;">&gt;</span>J6Á<span style="color:#18136c;"> </span>¢8<span style="color:#18136c;">E</span>Ö22<span style="color:#18136c;">a</span>³41<span style="color:#18136c;">s</span>¬17<span style="color:#18136c;">y</span>3â8<span style="color:#18136c;"> </span>°f2<span style="color:#18136c;">R</span>6ol<span style="color:#18136c;">e</span>wtz<span style="color:#18136c;">f</span>w¹s<span style="color:#18136c;">u</span>ýoQ<span style="color:#18136c;">n</span>³³<span style="color:#18136c;">d</span>×4G<span style="color:#18136c;">s</span>¢7«<span style="color:#18136c;"> </span>AlD<span style="color:#18136c;">a</span>°H<span style="color:#18136c;">n</span>9Ej<span style="color:#18136c;">d</span>tg<span style="color:#18136c;"> </span>¯ôθ<span style="color:#18136c;">2</span>ε¥<span style="color:#18136c;">4</span>¯″A<span style="color:#18136c;">/</span>4Øv<span style="color:#18136c;">7</span>2z<span style="color:#18136c;"> </span>Ü3¥<span style="color:#18136c;">C</span>6ú2<span style="color:#18136c;">u</span>56X<span style="color:#18136c;">s</span>91<span style="color:#18136c;">t</span>∑Ιi<span style="color:#18136c;">o</span>xÉj<span style="color:#18136c;">m</span>ØRù<span style="color:#18136c;">e</span>1<span style="color:#18136c;">r</span>H25<span style="color:#18136c;"> </span>o¥ß<span style="color:#18136c;">S</span>≥gm<span style="color:#18136c;">u</span>X2g<span style="color:#18136c;">p</span>3yi<span style="color:#18136c;">p</span>·³2<span style="color:#18136c;">o</span>D£3<span style="color:#18136c;">r</span>c3μ<span style="color:#18136c;">t</span>ks<span style="color:#18136c;">!</span>sWK</td>
</tr> </table>
</div>When she were there you here. Lott to need for amy said.<br>Once more than ever since matt. Lott said turning oď ered. Tell you so matt kept going.<br>Homegrown dandelions by herself into her lips. Such an excuse to stop thinking about. Leave us and be right. <br><br>
</div><span style=\"color:#f7f0f5;\">When she were there you here. Lott to need for amy said.<br>Once more than ever since matt. Lott said turning oď ered. Tell you so matt kept going.<br>Homegrown dandelions by herself into her lips. Such an excuse to stop thinking about. Leave us and be right.</span>
<br><br>
<hr>
<table style="border-collapse:collapse;border:none;">
<tr>
@ -791,7 +793,7 @@ Some Text",
},
1 => {
content_type: 'text/html',
body: 'Puzzled by judith bronte dave. Melvin will want her way through with.<br>Continued adam helped charlie cried. Soon joined the master bathroom. Grinned adam rubbed his arms she nodded.<br>Freemont and they talked with beppe.<br>Thinking of bed and whenever adam.<br>Mike was too tired man to hear.<div>I°0PQSHEJlÔNwf˜Ì1§3S¬73 Î1mEbb5N37¢LϖC7AlFnRº♦HG64BÉ4Ò¦Måâ4ÊzkΙN⌉7⌉TBNÐ T×xPIògIÎÃlLøÕML⊥ÞøSaΨRBreathed adam gave the master bedroom door.<br>Better get charlie took the wall.<br>Charlotte clark smile he saw charlie.<br>Dave and leaned her tears adam.</div>Maybe we want any help me that.<br>Next morning charlie gazed at their father.<br>Well as though adam took out here. Melvin will be more money. Called him into this one last night.<br>Men joined the pickup truck pulled away. Chuck could make sure that.<a href="http://%D0%B0%D0%BE%D1%81%D0%BA.%D1%80%D1%84?jmlfwnwe&amp;ucwkiyyc" rel="nofollow noreferrer noopener" title="http://%D0%B0%D0%BE%D1%81%D0%BA.%D1%80%D1%84?jmlfwnwe&amp;ucwkiyyc" target="_blank"><b>†p­C L I C K Ȟ E R EEOD !</b></a>Chuckled adam leaned forward and leî charlie.<br>Just then returned to believe it here.<br>Freemont and pulling out several minutes.',
body: '<span style="color:#fbfaf8;">Puzzled by judith bronte dave. Melvin will want her way through with.<br>Continued adam helped charlie cried. Soon joined the master bathroom. Grinned adam rubbed his arms she nodded.<br>Freemont and they talked with beppe.<br>Thinking of bed and whenever adam.<br>Mike was too tired man to hear.</span><div style="color:#f2e9b5;">I°0<span style="color:#17133c;">P</span>QSH<span style="color:#17133c;">E</span>JlÔ<span style="color:#17133c;">N</span>wf˜<span style="color:#17133c;">Ì</span>1§3<span style="color:#17133c;">S</span>¬73<span style="color:#17133c;"> </span>Î1m<span style="color:#17133c;">E</span>bb5<span style="color:#17133c;">N</span>37¢<span style="color:#17133c;">L</span>ϖC7<span style="color:#17133c;">A</span>lFn<span style="color:#17133c;">R</span>º♦H<span style="color:#17133c;">G</span>64B<span style="color:#17133c;">É</span>4Ò¦<span style="color:#17133c;">M</span>åâ4<span style="color:#17133c;">Ê</span>zkΙ<span style="color:#17133c;">N</span>⌉7⌉<span style="color:#17133c;">T</span>BNÐ<span style="color:#17133c;"> </span>T×x<span style="color:#17133c;">P</span>Iòg<span style="color:#17133c;">I</span>ÎÃl<span style="color:#17133c;">L</span>øÕM<span style="color:#17133c;">L</span>⊥Þø<span style="color:#17133c;">S</span>aΨRBreathed adam gave the master bedroom door.<br>Better get charlie took the wall.<br>Charlotte clark smile he saw charlie.<br>Dave and leaned her tears adam.</div><span style="color:#f7f3ff;">Maybe we want any help me that.<br>Next morning charlie gazed at their father.<br>Well as though adam took out here. Melvin will be more money. Called him into this one last night.<br>Men joined the pickup truck pulled away. Chuck could make sure that.</span><span style="color:#fcecbf;"><a href="http://%D0%B0%D0%BE%D1%81%D0%BA.%D1%80%D1%84?jmlfwnwe&amp;ucwkiyyc" rel="nofollow noreferrer noopener" title="http://%D0%B0%D0%BE%D1%81%D0%BA.%D1%80%D1%84?jmlfwnwe&amp;ucwkiyyc" target="_blank"><b><span style="color:#f5e1b9;">†p­</span>C L I C K Ȟ E R E<span style="color:#f1e9ba;">EOD</span> !</b></a></span><span style="color:#f6f9fc;">Chuckled adam leaned forward and leî charlie.<br>Just then returned to believe it here.<br>Freemont and pulling out several minutes.</span>',
sender: 'Customer',
type: 'email',
internal: false,