Fixes issue #3344 - Allow mailto links in knowledge base (KB) and email signatures.

This commit is contained in:
Martin Edenhofer 2021-01-04 15:31:27 +01:00 committed by Thorsten Eckel
parent 92e57e1ac2
commit 2a6036fb6e
11 changed files with 379 additions and 51 deletions

View file

@ -45,7 +45,7 @@ satinize html string based on whiltelist
if node['href']
href = cleanup_target(node['href'], keep_spaces: true)
href_without_spaces = href.gsub(/[[:space:]]/, '')
if external && href_without_spaces.present? && !href_without_spaces.downcase.start_with?('//') && href_without_spaces.downcase !~ %r{^.{1,6}://.+?}
if external && href_without_spaces.present? && !href_without_spaces.downcase.start_with?('mailto:') && !href_without_spaces.downcase.start_with?('//') && href_without_spaces.downcase !~ %r{^.{1,6}://.+?}
node['href'] = "http://#{node['href']}"
href = node['href']
href_without_spaces = href.gsub(/[[:space:]]/, '')
@ -176,16 +176,6 @@ satinize html string based on whiltelist
node.delete(attribute)
end
# remove mailto links
if node['href']
href = cleanup_target(node['href'])
if href =~ /mailto:(.*)$/i
text = Nokogiri::XML::Text.new($1, node.document)
node.add_next_sibling(text)
node.remove
Loofah::Scrubber::STOP
end
end
end
done = true
@ -320,17 +310,6 @@ cleanup html string:
scrubber_cleanup = Loofah::Scrubber.new do |node|
# remove mailto links
if node['href']
href = cleanup_target(node['href'])
if href =~ /mailto:(.*)$/i
text = Nokogiri::XML::Text.new($1, node.document)
node.add_next_sibling(text)
node.remove
Loofah::Scrubber::STOP
end
end
# remove not needed new lines
if node.instance_of?(Nokogiri::XML::Text)
if !node.parent || (node.parent.name != 'pre' && node.parent.name != 'code') # rubocop:disable Style/SoleNestedConditional

View file

@ -1199,7 +1199,7 @@ RSpec.describe String do
expect(<<~HTML.chomp.html2html_strict).to eq(<<~TEXT.chomp)
<a href="mailto:john.smith@example.com" style="color: blue; text-decoration: underline; ">john.smith@example.com</a>
HTML
john.smith@example.com
<a href="mailto:john.smith@example.com">john.smith@example.com</a>
TEXT
end
@ -1207,7 +1207,7 @@ RSpec.describe String do
expect(<<~HTML.chomp.html2html_strict).to eq(<<~TEXT.chomp)
<a href="MAILTO:john.smith@example.com" style="color: blue; text-decoration: underline; ">john.smith@example.com</a>
HTML
john.smith@example.com
<a href="MAILTO:john.smith@example.com">john.smith@example.com</a>
TEXT
end
@ -1215,7 +1215,7 @@ RSpec.describe String do
expect(<<~HTML.chomp.html2html_strict).to eq(<<~TEXT.chomp)
<a href="MAILTO:john.smith2@example.com" style="color: blue; text-decoration: underline; ">john.smith@example.com</a>
HTML
john.smith2@example.com
<a href="MAILTO:john.smith2@example.com">john.smith@example.com</a>
TEXT
end
@ -1289,7 +1289,9 @@ RSpec.describe String do
<div style="margin-top: 0cm; margin-right: 0cm; margin-left: 0cm; margin-bottom: 0.0001pt; font-size: 11pt; font-family: Calibri, sans-serif; "><span style="font-size: 10pt; font-family: Arial, sans-serif; ">Mit freundlichem Gruß<span class="Apple-converted-space">&nbsp;</span><br><br>John Smith<br>Service und Support<br><br>Example Service AG &amp; Co.<o:p></o:p></span></div><div style="margin-top: 0cm; margin-right: 0cm; margin-left: 0cm; margin-bottom: 0.0001pt; font-size: 11pt; font-family: Calibri, sans-serif; "><span style="font-size: 10pt; font-family: Arial, sans-serif; ">Management OHG<br>Someware-Str. 4<br>xxxxx Someware<br><br></span><span style="font-size: 10pt; font-family: Arial, sans-serif; "><o:p></o:p></span></div><div style="margin-top: 0cm; margin-right: 0cm; margin-left: 0cm; margin-bottom: 0.0001pt; font-size: 11pt; font-family: Calibri, sans-serif; "><span style="font-size: 10pt; font-family: Arial, sans-serif; ">Tel.: +49 001 7601 462<br>Fax: +49 001 7601 472</span><span style="font-size: 10pt; font-family: Arial, sans-serif; "><o:p></o:p></span></div><div style="margin-top: 0cm; margin-right: 0cm; margin-left: 0cm; margin-bottom: 0.0001pt; font-size: 11pt; font-family: Calibri, sans-serif; "><span style="font-size: 10pt; font-family: Arial, sans-serif; "><a href="mailto:john.smith@example.com" style=color: blue; text-decoration: underline; ">john.smith@example.com</a></span><span style="font-size: 10pt; font-family: Arial, sans-serif; "><o:p></o:p></span></div><div style="margin-top: 0cm; margin-right: 0cm; margin-left: 0cm; margin-bottom: 0.0001pt; font-size: 11pt; font-family: Calibri, sans-serif; "><span style="font-size: 10pt; font-family: Arial, sans-serif; "><a href="http://www.example.com" style="color: blue; text-decoration: underline; ">www.example.com</a></span><span style="font-size: 10pt; font-family: Arial, sans-serif; "><o:p></o:p></span></div>
HTML
<div>Mit freundlichem Gruß<br><br>John Smith<br>Service und Support<br><br>Example Service AG &amp; Co. </div><div>Management OHG<br>Someware-Str. 4<br>xxxxx Someware<br><br>
</div><div>Tel.: +49 001 7601 462<br>Fax: +49 001 7601 472 </div><div>john.smith@example.com</div><div>
</div><div>Tel.: +49 001 7601 462<br>Fax: +49 001 7601 472 </div><div>
<a href="mailto:john.smith@example.com">john.smith@example.com</a>
</div><div>
<a href="http://www.example.com" rel="nofollow noreferrer noopener" target="_blank">www.example.com</a>
</div>
TEXT
@ -1321,7 +1323,7 @@ RSpec.describe String do
HTML
<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>
<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><a href="mailto:annad@example.com">annad@example.com</a></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
@ -1344,7 +1346,7 @@ RSpec.describe String do
HTML
<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>
<span class="js-signatureMarker"></span><p><b>Von:</b> Besucherbüro, MKuk [<a href="mailto:besucherbuero@example.com">mailto:besucherbuero@example.com</a>] <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><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>
@ -1473,7 +1475,7 @@ RSpec.describe String do
expect(<<~HTML.chomp.html2html_strict).to eq(<<~TEXT.chomp)
<div><div style="border:none;border-top:solid #e1e1e1 1.0pt;padding:3.0pt 0cm 0cm 0cm"><p class="MsoNormal"><b><span lang="DE" style="font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif">Von:</span></b><span lang="DE" style="font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif"> Martin Edenhofer via Zammad Helpdesk [mailto:<a href="mailto:support@example.com">support@zammad.com</a>] <br><b>Gesendet:</b>\u0020
HTML
#{marker}<p><b>Von:</b> Martin Edenhofer via Zammad Helpdesk [mailto:support@example.com] <br><b>Gesendet:</b> </p>
#{marker}<p><b>Von:</b> Martin Edenhofer via Zammad Helpdesk [mailto:<a href="mailto:support@example.com">support@zammad.com</a>] <br><b>Gesendet:</b> </p>
TEXT
end
@ -1510,7 +1512,7 @@ RSpec.describe String do
<br class=""><div><blockquote type="cite" class=""><div class="">On 04 Mar 2017, at 14:47, Oliver Ruhm &lt;<a href="mailto:oliver@example.com" class="">oliver@example.com</a>&gt; wrote:</div><br class="Apple-interchange-newline">
HTML
<div>#{marker}<blockquote type="cite">
<div>On 04 Mar 2017, at 14:47, Oliver Ruhm &lt;oliver@example.com&gt; wrote:</div><br>
<div>On 04 Mar 2017, at 14:47, Oliver Ruhm &lt;<a href="mailto:oliver@example.com">oliver@example.com</a>&gt; wrote:</div><br>
</blockquote></div>
TEXT
end

View file

@ -2,12 +2,106 @@
from: John.Smith@example.com
from_email: John.Smith@example.com
from_display_name: ''
to: martin@example.com
subject: 'CI Daten für PublicView '
content_type: text/html
body: |-
<div>
<div>Hallo Martin,</div><p>&nbsp;</p><div>wie besprochen hier noch die Daten für die Intranetseite:</div><p>&nbsp;</p><div>Schriftart/-größe: Verdana 11 Pt wenn von Browser nicht unterstützt oder nicht vorhanden wird Arial 11 Pt genommen</div><div>Schriftfarbe: Schwarz</div><div>Farbe für die Balken in der Grafik: D7DDE9 (Blau)</div><p>&nbsp;</p><div>Wenn noch was fehlt oder du was brauchst sag mir Bescheid.</div><p>&nbsp;</p><div>Mit freundlichem Gruß<br><br>John Smith<br>Service und Support<br><br>Example Service AG &amp; Co. </div><div>Management OHG<br>Someware-Str. 4<br>xxxxx Someware<br><br>
</div><div>Tel.: +49 001 7601 462<br>Fax: +49 001 7601 472 </div><div>john.smith@example.com</div><div>
</div><div>Tel.: +49 001 7601 462<br>Fax: +49 001 7601 472 </div><div>
<a href="mailto:john.smith@example.com">john.smith@example.com</a>
</div><div>
<a href="http://www.example.com" rel="nofollow noreferrer noopener" target="_blank">www.example.com</a>
</div><div>
<br>OHG mit Sitz in Someware<br>AG: Someware - HRA 4158<br>Geschäftsführung: Tilman Test, Klaus Jürgen Test, </div><div>Bernhard Test, Ulrich Test<br>USt-IdNr. DE 1010101010<br><br>Persönlich haftende geschäftsführende Gesellschafterin: </div><div>Marie Test Example Stiftung, Someware<br>Vorstand: Rolf Test<br><br>Persönlich haftende Gesellschafterin: </div><div>Example Service AG, Someware<br>AG: Someware - HRB xxx<br>Vorstand: Marie Test </div><p>&nbsp;</p></div>
content_type: text/html
attachments:
- !ruby/hash:ActiveSupport::HashWithIndifferentAccess
data: '<html><head><base href="x-msg://2849/"></head><body style="word-wrap: break-word;
-webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><span class="Apple-style-span"
style="border-collapse: separate; font-family: Helvetica; font-style: normal;
font-variant: normal; font-weight: normal; letter-spacing: normal; line-height:
normal; orphans: 2; text-align: -webkit-auto; text-indent: 0px; text-transform:
none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing:
0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect:
none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; font-size:
medium; "><div lang="DE" link="blue" vlink="purple"><div class="Section1" style="page:
Section1; "><div style="margin-top: 0cm; margin-right: 0cm; margin-left: 0cm;
margin-bottom: 0.0001pt; font-size: 11pt; font-family: Calibri, sans-serif; "><span
style="font-size: 10pt; font-family: Arial, sans-serif; ">Hallo Martin,<o:p></o:p></span></div><div
style="margin-top: 0cm; margin-right: 0cm; margin-left: 0cm; margin-bottom: 0.0001pt;
font-size: 11pt; font-family: Calibri, sans-serif; "><span style="font-size: 10pt;
font-family: Arial, sans-serif; "><o:p>&nbsp;</o:p></span></div><div style="margin-top:
0cm; margin-right: 0cm; margin-left: 0cm; margin-bottom: 0.0001pt; font-size:
11pt; font-family: Calibri, sans-serif; "><span style="font-size: 10pt; font-family:
Arial, sans-serif; ">wie besprochen hier noch die Daten für die Intranetseite:<o:p></o:p></span></div><div
style="margin-top: 0cm; margin-right: 0cm; margin-left: 0cm; margin-bottom: 0.0001pt;
font-size: 11pt; font-family: Calibri, sans-serif; "><span style="font-size: 10pt;
font-family: Arial, sans-serif; "><o:p>&nbsp;</o:p></span></div><div style="margin-top:
0cm; margin-right: 0cm; margin-left: 0cm; margin-bottom: 0.0001pt; font-size:
11pt; font-family: Calibri, sans-serif; "><span style="font-size: 10pt; font-family:
Arial, sans-serif; ">Schriftart/-größe: Verdana 11 Pt wenn von Browser nicht unterstützt
oder nicht vorhanden wird Arial 11 Pt genommen<o:p></o:p></span></div><div style="margin-top:
0cm; margin-right: 0cm; margin-left: 0cm; margin-bottom: 0.0001pt; font-size:
11pt; font-family: Calibri, sans-serif; "><span style="font-size: 10pt; font-family:
Arial, sans-serif; ">Schriftfarbe: Schwarz<o:p></o:p></span></div><div style="margin-top:
0cm; margin-right: 0cm; margin-left: 0cm; margin-bottom: 0.0001pt; font-size:
11pt; font-family: Calibri, sans-serif; "><span style="font-size: 10pt; font-family:
Arial, sans-serif; ">Farbe für die Balken in der Grafik: D7DDE9 (Blau)<o:p></o:p></span></div><div
style="margin-top: 0cm; margin-right: 0cm; margin-left: 0cm; margin-bottom: 0.0001pt;
font-size: 11pt; font-family: Calibri, sans-serif; "><span style="font-size: 10pt;
font-family: Arial, sans-serif; "><o:p>&nbsp;</o:p></span></div><div style="margin-top:
0cm; margin-right: 0cm; margin-left: 0cm; margin-bottom: 0.0001pt; font-size:
11pt; font-family: Calibri, sans-serif; "><span style="font-size: 10pt; font-family:
Arial, sans-serif; ">Wenn noch was fehlt oder du was brauchst sag mir Bescheid.<o:p></o:p></span></div><div
style="margin-top: 0cm; margin-right: 0cm; margin-left: 0cm; margin-bottom: 0.0001pt;
font-size: 11pt; font-family: Calibri, sans-serif; "><span style="font-size: 10pt;
font-family: Arial, sans-serif; "><o:p>&nbsp;</o:p></span></div><div style="margin-top:
0cm; margin-right: 0cm; margin-left: 0cm; margin-bottom: 0.0001pt; font-size:
11pt; font-family: Calibri, sans-serif; "><span style="font-size: 10pt; font-family:
Arial, sans-serif; ">Mit freundlichem Gruß<span class="Apple-converted-space">&nbsp;</span><br><br>John
Smith<br>Service und Support<br><br>Example Service AG &amp; Co.<o:p></o:p></span></div><div
style="margin-top: 0cm; margin-right: 0cm; margin-left: 0cm; margin-bottom: 0.0001pt;
font-size: 11pt; font-family: Calibri, sans-serif; "><span style="font-size: 10pt;
font-family: Arial, sans-serif; ">Management OHG<br>Someware-Str. 4<br>xxxxx Someware<br><br></span><span
style="font-size: 10pt; font-family: Arial, sans-serif; "><o:p></o:p></span></div><div
style="margin-top: 0cm; margin-right: 0cm; margin-left: 0cm; margin-bottom: 0.0001pt;
font-size: 11pt; font-family: Calibri, sans-serif; "><span style="font-size: 10pt;
font-family: Arial, sans-serif; ">Tel.: +49 001 7601 462<br>Fax: +49 001 7601
472</span><span style="font-size: 10pt; font-family: Arial, sans-serif; "><o:p></o:p></span></div><div
style="margin-top: 0cm; margin-right: 0cm; margin-left: 0cm; margin-bottom: 0.0001pt;
font-size: 11pt; font-family: Calibri, sans-serif; "><span style="font-size: 10pt;
font-family: Arial, sans-serif; "><a href="mailto:john.smith@example.com" style="color:
blue; text-decoration: underline; ">john.smith@example.com</a></span><span style="font-size:
10pt; font-family: Arial, sans-serif; "><o:p></o:p></span></div><div style="margin-top:
0cm; margin-right: 0cm; margin-left: 0cm; margin-bottom: 0.0001pt; font-size:
11pt; font-family: Calibri, sans-serif; "><span style="font-size: 10pt; font-family:
Arial, sans-serif; "><a href="http://www.example.com" style="color: blue; text-decoration:
underline; ">www.example.com</a></span><span style="font-size: 10pt; font-family:
Arial, sans-serif; "><o:p></o:p></span></div><div style="margin-top: 0cm; margin-right:
0cm; margin-left: 0cm; margin-bottom: 0.0001pt; font-size: 11pt; font-family:
Calibri, sans-serif; "><span style="font-size: 8pt; font-family: Arial, sans-serif;
"><br>OHG mit Sitz in Someware<br>AG: Someware - HRA 4158<br>Geschäftsführung:
Tilman Test, Klaus Jürgen Test,</span><span style="font-size: 8pt; font-family:
Arial, sans-serif; "><o:p></o:p></span></div><div style="margin-top: 0cm; margin-right:
0cm; margin-left: 0cm; margin-bottom: 0.0001pt; font-size: 11pt; font-family:
Calibri, sans-serif; "><span style="font-size: 8pt; font-family: Arial, sans-serif;
">Bernhard Test, Ulrich Test<br>USt-IdNr. DE 1010101010<br><br>Persönlich haftende
geschäftsführende Gesellschafterin:</span><span style="font-size: 8pt; font-family:
Arial, sans-serif; "><o:p></o:p></span></div><div style="margin-top: 0cm; margin-right:
0cm; margin-left: 0cm; margin-bottom: 0.0001pt; font-size: 11pt; font-family:
Calibri, sans-serif; "><span style="font-size: 8pt; font-family: Arial, sans-serif;
">Marie Test Example Stiftung, Someware<br>Vorstand: Rolf Test<br><br>Persönlich
haftende Gesellschafterin:</span><span style="font-size: 8pt; font-family: Arial,
sans-serif; "><o:p></o:p></span></div><div style="margin-top: 0cm; margin-right:
0cm; margin-left: 0cm; margin-bottom: 0.0001pt; font-size: 11pt; font-family:
Calibri, sans-serif; "><span style="font-size: 8pt; font-family: Arial, sans-serif;
">Example Service AG, Someware<br>AG: Someware - HRB xxx<br>Vorstand: Marie Test</span><span
style="font-size: 8pt; font-family: Arial, sans-serif; "><o:p></o:p></span></div><div
style="margin-top: 0cm; margin-right: 0cm; margin-left: 0cm; margin-bottom: 0.0001pt;
font-size: 11pt; font-family: Calibri, sans-serif; "><o:p>&nbsp;</o:p></div></div></div></span></body></html>'
filename: message.html
preferences: !ruby/hash:ActiveSupport::HashWithIndifferentAccess
content-alternative: true
original-format: true
Mime-Type: text/html
Charset: iso-8859-1

View file

@ -24,5 +24,142 @@ body: |-
<p>Haben sich beim ein oder anderen generell noch Fragen aufgetan?</p></div><div> <p>&nbsp;</p></div><div> <p>&nbsp;</p></div><div>
<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>
<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;<a href="mailto:john.smith@example.com">john.hinz@example.com</a>&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 <a href="mailto:john.smith@Example.de">john.smith@Example.de</a><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
attachments:
- !ruby/hash:ActiveSupport::HashWithIndifferentAccess
data: "<META HTTP-EQUIV=\"Content-Type\" CONTENT=\"text/html; charset=iso-8859-1\">\n<html
xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\"
xmlns:w=\"urn:schemas-microsoft-com:office:word\" xmlns:m=\"http://schemas.microsoft.com/office/2004/12/omml\"
xmlns=\"http://www.w3.org/TR/REC-html40\"><head><meta name=Generator content=\"Microsoft
Word 12 (filtered medium)\"><style><!--\n/* Font Definitions */\n@font-face\n\t{font-family:\"Cambria
Math\";\n\tpanose-1:2 4 5 3 5 4 6 3 2 4;}\n@font-face\n\t{font-family:Calibri;\n\tpanose-1:2
15 5 2 2 2 4 3 2 4;}\n@font-face\n\t{font-family:Tahoma;\n\tpanose-1:2 11 6 4
3 5 4 4 2 4;}\n@font-face\n\t{font-family:Consolas;\n\tpanose-1:2 11 6 9 2 2 4
3 2 4;}\n/* Style Definitions */\np.MsoNormal, li.MsoNormal, div.MsoNormal\n\t{margin:0cm;\n\tmargin-bottom:.0001pt;\n\tfont-size:12.0pt;\n\tfont-family:\"Times
New Roman\",\"serif\";}\na:link, span.MsoHyperlink\n\t{mso-style-priority:99;\n\tcolor:blue;\n\ttext-decoration:underline;}\na:visited,
span.MsoHyperlinkFollowed\n\t{mso-style-priority:99;\n\tcolor:purple;\n\ttext-decoration:underline;}\nspan.E-MailFormatvorlage17\n\t{mso-style-type:personal-reply;\n\tfont-family:\"Calibri\",\"sans-serif\";\n\tcolor:#1F497D;}\n.MsoChpDefault\n\t{mso-style-type:export-only;\n\tfont-size:10.0pt;}\n@page
WordSection1\n\t{size:612.0pt 792.0pt;\n\tmargin:70.85pt 70.85pt 2.0cm 70.85pt;}\ndiv.WordSection1\n\t{page:WordSection1;}\n--></style><!--[if
gte mso 9]><xml>\n<o:shapedefaults v:ext=\"edit\" spidmax=\"1026\" />\n</xml><![endif]--><!--[if
gte mso 9]><xml>\n<o:shapelayout v:ext=\"edit\">\n<o:idmap v:ext=\"edit\" data=\"1\"
/>\n</o:shapelayout></xml><![endif]--></head><body lang=DE link=blue vlink=purple><div
class=WordSection1><p class=MsoNormal><span style='font-size:11.0pt;font-family:\"Calibri\",\"sans-serif\";color:#1F497D'>Hallo
Martin,<o:p></o:p></span></p><p class=MsoNormal><span style='font-size:11.0pt;font-family:\"Calibri\",\"sans-serif\";color:#1F497D'><o:p>&nbsp;</o:p></span></p><p
class=MsoNormal><span style='font-size:11.0pt;font-family:\"Calibri\",\"sans-serif\";color:#1F497D'>ich
möchte mich gern für den Beta-Test für die Ticket Templates unter XXXX 2.4 anmelden.<o:p></o:p></span></p><p
class=MsoNormal><span style='font-size:11.0pt;font-family:\"Calibri\",\"sans-serif\";color:#1F497D'><o:p>&nbsp;</o:p></span></p><div><p
class=MsoNormal><span style='font-size:10.5pt;font-family:Consolas;color:#1F497D'><o:p>&nbsp;</o:p></span></p><p
class=MsoNormal><span style='font-size:10.5pt;font-family:Consolas;color:#1F497D'>Mit
freundlichen Grüßen<o:p></o:p></span></p><p class=MsoNormal><span style='font-size:10.5pt;font-family:Consolas;color:#1F497D'>John
Günther<o:p></o:p></span></p><p class=MsoNormal><span style='font-size:10.5pt;font-family:Consolas;color:#1F497D'><o:p>&nbsp;</o:p></span></p><p
class=MsoNormal><span style='font-size:10.5pt;font-family:Consolas;color:#1F497D'><a
href=\"http://www.GeoFachDatenServer.de\"><span style='color:blue'>example.com</span></a>
&#8211; profitieren Sie vom umfangreichen Daten-Netzwerk <o:p></o:p></span></p><p
class=MsoNormal><span style='font-size:10.5pt;font-family:Consolas;color:#1F497D'><o:p>&nbsp;</o:p></span></p><p
class=MsoNormal><span style='font-size:10.5pt;font-family:Consolas;color:#1F497D'>_
__ ___ ____________________________ ___ __ _<o:p></o:p></span></p><p class=MsoNormal><span
style='font-size:10.5pt;font-family:Consolas;color:#1F497D'><o:p>&nbsp;</o:p></span></p><p
class=MsoNormal><span style='font-size:10.5pt;font-family:Consolas;color:#1F497D'>Example
GmbH<o:p></o:p></span></p><p class=MsoNormal><span style='font-size:10.5pt;font-family:Consolas;color:#1F497D'>Some
What<o:p></o:p></span></p><p class=MsoNormal><span style='font-size:10.5pt;font-family:Consolas;color:#1F497D'><o:p>&nbsp;</o:p></span></p><p
class=MsoNormal><span style='font-size:10.5pt;font-family:Consolas;color:#1F497D'>Sitz:
Someware-Straße 9, XXXXX Someware<o:p></o:p></span></p><p class=MsoNormal><span
style='font-size:10.5pt;font-family:Consolas;color:#1F497D'><o:p>&nbsp;</o:p></span></p><p
class=MsoNormal><span style='font-size:10.5pt;font-family:Consolas;color:#1F497D'>M:
+49 (0)  XXX XX XX 70<o:p></o:p></span></p><p class=MsoNormal><span style='font-size:10.5pt;font-family:Consolas;color:#1F497D'>T:
+49 (0) XXX XX XX 22<o:p></o:p></span></p><p class=MsoNormal><span style='font-size:10.5pt;font-family:Consolas;color:#1F497D'>F:
+49 (0) XXX XX XX 11<o:p></o:p></span></p><p class=MsoNormal><span style='font-size:10.5pt;font-family:Consolas;color:#1F497D'>W:
www.example.de <o:p></o:p></span></p><p class=MsoNormal><span style='font-size:10.5pt;font-family:Consolas;color:#1F497D'><o:p>&nbsp;</o:p></span></p><p
class=MsoNormal><span style='font-size:10.5pt;font-family:Consolas;color:#1F497D'>Geschäftsführer:
John Smith<o:p></o:p></span></p><p class=MsoNormal><span style='font-size:10.5pt;font-family:Consolas;color:#1F497D'>HRB
XXXXXX AG Someware<o:p></o:p></span></p><p class=MsoNormal><span style='font-size:10.5pt;font-family:Consolas;color:#1F497D'>St.-Nr.:
112/107/05858<o:p></o:p></span></p><p class=MsoNormal><span style='font-size:10.5pt;font-family:Consolas;color:#1F497D'><o:p>&nbsp;</o:p></span></p><p
class=MsoNormal><span style='font-size:10.5pt;font-family:Consolas;color:#1F497D'>ISO
9001:2008 Zertifiziert -Qualitätsstandard mit Zukunft <o:p></o:p></span></p><p
class=MsoNormal><span style='font-size:10.5pt;font-family:Consolas;color:#1F497D'>_
__ ___ ____________________________ ___ __ _<o:p></o:p></span></p><p class=MsoNormal><span
style='font-size:10.5pt;font-family:Consolas;color:#1F497D'><o:p>&nbsp;</o:p></span></p><p
class=MsoNormal><span style='font-size:10.5pt;font-family:Consolas;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.<o:p></o:p></span></p></div><p class=MsoNormal><span style='font-size:11.0pt;font-family:\"Calibri\",\"sans-serif\";color:#1F497D'><o:p>&nbsp;</o:p></span></p><div><div
style='border:none;border-top:solid #B5C4DF 1.0pt;padding:3.0pt 0cm 0cm 0cm'><p
class=MsoNormal><b><span style='font-size:10.0pt;font-family:\"Tahoma\",\"sans-serif\"'>Von:</span></b><span
style='font-size:10.0pt;font-family:\"Tahoma\",\"sans-serif\"'> 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<o:p></o:p></span></p></div></div><p class=MsoNormal><o:p>&nbsp;</o:p></p><p
class=MsoNormal>Hallo,<o:p></o:p></p><div><p class=MsoNormal><o:p>&nbsp;</o:p></p></div><div><p
class=MsoNormal>ich versuche an den Punkten anzuknüpfen.&nbsp;<o:p></o:p></p></div><div><p
class=MsoNormal><o:p>&nbsp;</o:p></p></div><div><p class=MsoNormal><b>a)&nbsp;LDAP
Muster Konfigdatei</b><o:p></o:p></p></div><div><p class=MsoNormal><o:p>&nbsp;</o:p></p></div><div><p
class=MsoNormal><a href=\"https://wiki.lab.example.com/doku.php?id=xxxx:start&amp;#ldap\">https://wiki.lab.example.com/doku.php?id=xxxx:start&amp;#ldap</a><o:p></o:p></p></div><div><p
class=MsoNormal><o:p>&nbsp;</o:p></p></div><div><p class=MsoNormal>PS: Es gibt
noch eine Reihe weiterer Möglichkeiten, vor allem im Bezug auf Agenten-Rechte/LDAP
Gruppen Synchronisation. Wenn Ihr hier weitere Informationen benötigt, einfach
im Wiki die Aufgabenbeschreibung rein machen und ich kann eine Beispiel-Config
dazu legen.<o:p></o:p></p></div><div><p class=MsoNormal>&nbsp;<o:p></o:p></p></div><div><p
class=MsoNormal><o:p>&nbsp;</o:p></p></div><div><p class=MsoNormal><b>b) Ticket
Templates</b><o:p></o:p></p></div><div><p class=MsoNormal>Wir haben das Paket
vom alten Maintainer übernommen, es läuft nun auf XXXX 2.4, XXXX 3.0 und XXXX
3.1. Wir haben das Paket um weitere Funktionen ergänzt und würden es gerne hier
in diesen Kreis zum Beta-Test bereit stellen.&nbsp;<o:p></o:p></p></div><div><p
class=MsoNormal><o:p>&nbsp;</o:p></p></div><div><p class=MsoNormal>Vorgehen:<o:p></o:p></p></div><div><p
class=MsoNormal>Wer Interesse hat, bitte eine Email an mich und ich versende Zugänge
zu den Beta-Test-Systemen. Nach ca. 2 Wochen werden wir die Erweiterungen in der
Version 1.0 veröffentlichen.<o:p></o:p></p></div><div><p class=MsoNormal><o:p>&nbsp;</o:p></p></div><div><p
class=MsoNormal><o:p>&nbsp;</o:p></p></div><div><p class=MsoNormal><b>c) XXXX
Entwickler Schulung</b><o:p></o:p></p></div><div><p class=MsoNormal>Weil es immer
wieder Thema war, falls jemand Interesse hat, das XXXX bietet nun auch&nbsp;OTRS
Entwickler Schulungen an (<a href=\"http://www.example.com/kurs/xxxx_entwickler/\">http://www.example.com/kurs/xxxx_entwickler/</a>).<o:p></o:p></p></div><div><p
class=MsoNormal><o:p>&nbsp;</o:p></p></div><div><p class=MsoNormal><o:p>&nbsp;</o:p></p></div><div><p
class=MsoNormal><b>d) Genelle Fragen?</b><o:p></o:p></p></div><div><p class=MsoNormal>Haben
sich beim ein oder anderen generell noch Fragen aufgetan?<o:p></o:p></p></div><div><p
class=MsoNormal><o:p>&nbsp;</o:p></p></div><div><p class=MsoNormal><o:p>&nbsp;</o:p></p></div><div><p
class=MsoNormal>Viele Grüße!<o:p></o:p></p></div><div><p class=MsoNormal><o:p>&nbsp;</o:p></p></div><div><div><p
class=MsoNormal style='margin-bottom:12.0pt'>-Fritz<o:p></o:p></p></div><p class=MsoNormal>On
May 2, 2012, at 14:25 , John Smith wrote:<br><br><br><o:p></o:p></p><p class=MsoNormal>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&nbsp;implementiert.&nbsp;<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><br>Im Wiki kann ich die LDAP Muster Konfigdatei
nicht finden.<br>Hat die jemand von euch zufälligerweise ?<br><br><br>Danke und
Gruß<br>John Smith<br><br><br>Am 4. April 2012 08:24 schrieb Smith, John Marian&nbsp;&lt;<a
href=\"mailto:john.smith@example.com\">john.hinz@example.com</a>&gt;:<br>Hallo
zusammen,<br><br>&nbsp;<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&nbsp;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 CI&#8217;s (Configuration Items) verknüpfen. Das ist sehr praktisch
wenn man zum Beispiel Rechnungen an Server, Computern und und und anhängen&nbsp;möchte.<br><br>&nbsp;<br><br>Der
Dank geht an Frank Linden, der uns das Paket kostenlos zur Verfügung gestellt
hat.<br><br>&nbsp;<br><br>Viele Grüße aus Someware<br><br>&nbsp;<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
<a href=\"mailto:john.smith@Example.de\">john.smith@Example.de</a><br>Web&nbsp;<a
href=\"http://www.Example.de\">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>_________________________&nbsp;<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<o:p></o:p></p></div></div></body></html>"
filename: message.html
preferences: !ruby/hash:ActiveSupport::HashWithIndifferentAccess
content-alternative: true
original-format: true
Mime-Type: text/html
Charset: iso-8859-1

View file

@ -1,11 +1,9 @@
--- !ruby/hash:ActiveSupport::HashWithIndifferentAccess
reply-to: serviceteam@cylex.de
from: CYLEX Newsletter <carina.merkant@cylex.de>
from_email: carina.merkant@cylex.de
from_display_name: CYLEX Newsletter
subject: Eine schöne Adventszeit für ZNUNY GMBH - ENTERPRISE SERVICES FÜR OTRS
to: enjoy_us@znuny.com
content_type: text/html
subject: Eine schöne Adventszeit für ZNUNY GMBH - ENTERPRISE SERVICES FÜR OTRS
body: |-
<table border="0" cellpadding="0" style=" font-size: 14px;">
<tbody>
@ -31,10 +29,58 @@ body: |-
<tbody>
<tr>
<td align="left" style="text-align:left;"> Impressum <br> S.C. CYLEX INTERNATIONAL S.N.C.<br> Sat. Palota 119/A RO 417516 Palota Romania <br> Tel.: +49 208/62957-0 | <br> Geschäftsführer: Francisc Osvald<br> Handelsregister: J05/1591/2009<br> USt.IdNr.: RO26332771 <br>
<br> serviceteam@cylex.de<br>
<br>
<a href="mailto:serviceteam@cylex.de">E-Mail Kontakt</a><br>
<a href="http://newsletters.cylex.de/ref/www.cylex.de/sid-105/uid-4134001/lid-98/http%3a%2f%2fweb2.cylex.de%2fHomepage%2fHome.asp" rel="nofollow noreferrer noopener" target="_blank" title="http://newsletters.cylex.de/ref/www.cylex.de/sid-105/uid-4134001/lid-98/http%3a%2f%2fweb2.cylex.de%2fHomepage%2fHome.asp">Homepage</a><br>
<a href="http://newsletters.cylex.de/ref/www.cylex.de/sid-105/uid-4134001/lid-99/http%3a%2f%2fnewsletters.cylex.de%2funsubscribe.aspx%3fuid%3d4134001%26d%3dwww.cylex.de%26e%3denjoy%40znuny.com%26sc%3d3009%26l%3dd" rel="nofollow noreferrer noopener" target="_blank" title="http://newsletters.cylex.de/ref/www.cylex.de/sid-105/uid-4134001/lid-99/http%3a%2f%2fnewsletters.cylex.de%2funsubscribe.aspx%3fuid%3d4134001%26d%3dwww.cylex.de%26e%3denjoy%40znuny.com%26sc%3d3009%26l%3dd">Newsletter abbestellen</a>
</td>
</tr>
</tbody>
</table>
content_type: text/html
reply-to: serviceteam@cylex.de
attachments:
- !ruby/hash:ActiveSupport::HashWithIndifferentAccess
data: "<center>\n\t<table border=\"0\" cellpadding=\"0\" style=\"width: 600px; font-family:
Arial,sans-serif; font-size: 14px;\" width=\"600\">\n\t\t<tbody>\n\t\t\t<tr>\n\t\t\t\t<td>\n\t\t\t\t\t<p>\n\t\t\t\t\t\t<a
href=\"http://newsletters.cylex.de/ref/www.cylex.de/sid-105/uid-4134001/lid-2/http%3a%2f%2fweb2.cylex.de%2fadvent2012%3fb2b\"><img
alt=\"CYLEX Adventskalender 2012\" border=\"0\" height=\"90\" src=\"http://newsletters.cylex.de/img/www.cylex.de/sid-105/uid-4134001/http%3a%2f%2fnewsletters.cylex.de%2fimages_upl%2fcylexadvent2012-newsletter-banner634895.jpg\"
style=\"width:600px; height:90px; color: rgb(153, 153, 153); font-size: 10px;\"
width=\"600\" /></a></p>\n\t\t\t\t\t<p>\n\t\t\t\t\t\tLieber CYLEX Eintragsinhaber,</p>\n\t\t\t\t\t<p>\n\t\t\t\t\t\tdas
Jahr neigt sich dem Ende und die besinnliche Zeit beginnt laut Kalender mit dem<br
/>\n\t\t\t\t\t\t1. Advent. Und wie immer wird es in der vorweihnachtlichen Zeit
meist beruflich und privat<br />\n\t\t\t\t\t\tso richtig schön hektisch.</p>\n\t\t\t\t\t<p>\n\t\t\t\t\t\tUm
Ihre Weihnachtsstimmung in Schwung zu bringen kommen wir nun mit unserem Adventskalender
ins Spiel. Denn 24 Tage werden Sie unsere netten Geschichten, Rezepte und Gewinnspiele
sowie ausgesuchte Geschenktipps und Einkaufsgutscheine online begleiten. Damit
lässt sich Ihre Freude auf das Fest garantiert mit jedem Tag steigern.</p>\n\t\t\t\t\t<table
style=\"font-family: Arial,sans-serif; font-size: 14px;\" width=\"100%\">\n\t\t\t\t\t\t<tbody>\n\t\t\t\t\t\t\t<tr>\n\t\t\t\t\t\t\t\t<td
align=\"left\" valign=\"middle\">\n\t\t\t\t\t\t\t\t\tEinen gemütlichen Start in
die Adventszeit wünscht Ihnen</td>\n\t\t\t\t\t\t\t\t<td align=\"right\" valign=\"middle\"
width=\"160\">\n\t\t\t\t\t\t\t\t\t<a href=\"http://newsletters.cylex.de/ref/www.cylex.de/sid-105/uid-4134001/lid-1/http%3a%2f%2fweb2.cylex.de%2fadvent2012%3fb2b\"
style=\"background:#c00; color:#fff; text-align:center;\"><img alt=\"Jetzt Türchen
öffnen\" src=\"http://newsletters.cylex.de/images_upl/cylexadvent2012-newsletter-btn634895.png\"
style=\"width:146px; height:30px; border:0; text-align:center; font-size:12px;
font-weight:700; background:#c00; color:#fff;\" title=\"Jetzt Türchen öffnen\"
/></a></td>\n\t\t\t\t\t\t\t</tr>\n\t\t\t\t\t\t</tbody>\n\t\t\t\t\t</table>\n\t\t\t\t\t<p>\n\t\t\t\t\t\tIhr
CYLEX Team<br />\n\t\t\t\t\t\t<br />\n\t\t\t\t\t\t<strong>P.S.</strong> Damit
Sie keinen Tag versäumen, empfehlen wir Ihnen den <a href=\"http://newsletters.cylex.de/ref/www.cylex.de/sid-105/uid-4134001/lid-3/http%3a%2f%2fweb2.cylex.de%2fadvent2012%3fb2b\">Link
des Adventkalenders</a> in<br />\n\t\t\t\t\t\t&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;
Ihrer Lesezeichen-Symbolleiste zu ergänzen.</p>\n\t\t\t\t\t<p>\n\t\t\t\t\t\t </p>\n\t\t\t\t</td>\n\t\t\t</tr>\n\t\t</tbody>\n\t</table>\n</center>\n<center><table
width=\"600\" cellspacing=\"0\" cellpadding=\"0\" style=\"color:#6578A0; font-family:Arial,Verdana,Helvetica,sans-serif;
font-size:10px;\">\n<tbody>\n<tr>\n<td width=\"600\" align=\"left\" style=\"text-align:left;\">\nImpressum
<br/>\nS.C. CYLEX INTERNATIONAL S.N.C.<br />\nSat. Palota 119/A RO 417516 Palota
Romania <br/>\nTel.: +49 208/62957-0 | <br/>\nGeschäftsführer: Francisc Osvald<br
/>\nHandelsregister: J05/1591/2009<br />\nUSt.IdNr.: RO26332771\n<br/>\n<br/>\n<a
href=\"mailto:serviceteam@cylex.de\" style=\"color:#6578A0; font-family:Arial,Verdana,Helvetica,sans-serif;
font-size:10px;\">E-Mail Kontakt</a><br/>\n<a href=\"http://newsletters.cylex.de/ref/www.cylex.de/sid-105/uid-4134001/lid-98/http%3a%2f%2fweb2.cylex.de%2fHomepage%2fHome.asp\"
style=\"color:#6578A0; font-family:Arial,Verdana,Helvetica,sans-serif; font-size:10px;\">Homepage</a><br/>\n<a
href=\"http://newsletters.cylex.de/ref/www.cylex.de/sid-105/uid-4134001/lid-99/http%3a%2f%2fnewsletters.cylex.de%2funsubscribe.aspx%3fuid%3d4134001%26d%3dwww.cylex.de%26e%3denjoy%40znuny.com%26sc%3d3009%26l%3dd\"
style=\"color:#6578A0; font-family:Arial,Verdana,Helvetica,sans-serif; font-size:10px;\">Newsletter
abbestellen</a>\n</td>\n</tr>\n</tbody>\n</table>\n</center>"
filename: message.html
preferences: !ruby/hash:ActiveSupport::HashWithIndifferentAccess
content-alternative: true
original-format: true
Mime-Type: text/html
Charset: utf-8

View file

@ -2,8 +2,9 @@
from: Manfred Haert <Manfred.Haert@example.com>
from_email: Manfred.Haert@example.com
from_display_name: Manfred Haert
subject: Antragswesen in TesT abbilden
to: info@znuny.inc
cc: '"Bert Jörg" <Joerg.Bert@example.com>, "Test, Karl-Heinz" <Karl-Heinz.Test@example.com>'
subject: Antragswesen in TesT abbilden
body: 'Sehr geehrte Damen und Herren,<br> <br> wir hatten bereits letztes Jahr einen
TesT-Workshop mit Ihrem Herrn XXX durchgeführt und würden nun gerne erneut Ihre
Dienste in Anspruch nehmen.<br> <br> Mittlerweile setzen wir TesT produktiv ein
@ -13,16 +14,85 @@ body: 'Sehr geehrte Damen und Herren,<br> <br> wir hatten bereits letztes Jahr e
stehe ich gerne zur Verfügung. Vielen Dank!<br> <br> <div>--<br> Freundliche Grüße<br>
i.A. Manfred Härt<br> <br> <small>Test Somewhere GmbH<br> Ferdinand-Straße 99<br>
99073 Korlben<br> <b>Bitte beachten Sie die neuen Rufnummern!</b><br> Telefon: 011261
00000-2460<br> Fax: 011261 0000-7460<br> manfred.haertel@example.com<br> <a href="http://www.example.com"
rel="nofollow noreferrer noopener" target="_blank">http://www.example.com</a><br>
00000-2460<br> Fax: 011261 0000-7460<br> <a href="mailto:manfred.haertel@example.com">mailto:manfred.haertel@example.com</a><br>
<a href="http://www.example.com" rel="nofollow noreferrer noopener" target="_blank">http://www.example.com</a><br>
JETZT AUCH BEI FACEBOOK !<br> <a href="https://www.facebook.com/test" rel="nofollow
noreferrer noopener" target="_blank">https://www.facebook.com/test</a><span class="js-signatureMarker"></span><br>
___________________________________<br> Test Somewhere GmbH<br> </small> <p><small>Diese
e-Mail ist ausschließlich für den beabsichtigten Empfänger bestimmt. Sollten Sie
irrtümlich diese e-Mail erhalten haben, unterrichten Sie uns bitte umgehend unter
kontakt@example.com und vernichten Sie diese Mitteilung einschließlich der ggf.
beigefügten Dateien.<br> Weil wir die Echtheit oder Vollständigkeit der in dieser
Nachricht enthaltenen Informationen nicht garantieren können, bitten wir um Verständnis,
dass wir zu Ihrem und unserem Schutz die rechtliche Verbindlichkeit der vorstehenden
Erklärungen ausschließen, soweit wir mit Ihnen keine anders lautenden Vereinbarungen
getroffen haben.</small> </p></div>'
<a href="mailto:kontakt@example.com">kontakt@example.com</a> und vernichten Sie
diese Mitteilung einschließlich der ggf. beigefügten Dateien.<br> Weil wir die Echtheit
oder Vollständigkeit der in dieser Nachricht enthaltenen Informationen nicht garantieren
können, bitten wir um Verständnis, dass wir zu Ihrem und unserem Schutz die rechtliche
Verbindlichkeit der vorstehenden Erklärungen ausschließen, soweit wir mit Ihnen
keine anders lautenden Vereinbarungen getroffen haben.</small> </p></div>'
content_type: text/html
attachments:
- !ruby/hash:ActiveSupport::HashWithIndifferentAccess
data: |+
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
</head>
<body bgcolor="#FFFFFF" text="#000066">
<font face="Helvetica, Arial, sans-serif">Sehr geehrte Damen und
Herren,<br>
<br>
wir hatten bereits letztes Jahr einen TesT-Workshop mit Ihrem
Herrn XXX durchgeführt und würden nun gerne erneut
Ihre Dienste in Anspruch nehmen.<br>
<br>
Mittlerweile setzen wir TesT produktiv ein und würden nun gerne an
einem Anwendungsfall (Change-Management) die Machbarkeit des
Abbildens eines derzeit "per Papier" durchgeführten Antragswesens
in TesT prüfen wollen.<br>
<br>
Wir bitten gerne um ein entsprechendes Angebot.<br>
<br>
Für Rückfragen stehe ich gerne zur Verfügung. Vielen Dank!<br>
<br>
</font>
<div class="moz-signature">-- <br>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title></title>
<font face="Helvetica, Arial, sans-serif"> Freundliche Grüße<br>
i.A. Manfred Härt<br>
<br>
<small><small>Test Somewhere GmbH<br>
Ferdinand-Straße 99<br>
99073 Korlben<br>
<b>Bitte beachten Sie die neuen Rufnummern!</b><br>
Telefon: 011261 00000-2460<br>
Fax: 011261 0000-7460<br>
<a class="moz-txt-link-freetext" href="mailto:manfred.haertel@example.com">mailto:manfred.haertel@example.com</a><br>
<a class="moz-txt-link-freetext" href="http://www.example.com">http://www.example.com</a><br>
JETZT AUCH BEI FACEBOOK !<br>
<a class="moz-txt-link-freetext" href="https://www.facebook.com/test">https://www.facebook.com/test</a><br>
___________________________________<br>
Test Somewhere GmbH<br>
</small></small> </font>
<p><font face="Helvetica, Arial, sans-serif"><small><small>Diese
e-Mail ist ausschließlich für den beabsichtigten Empfänger
bestimmt. Sollten Sie irrtümlich diese e-Mail erhalten
haben, unterrichten Sie uns bitte umgehend unter
<a class="moz-txt-link-abbreviated" href="mailto:kontakt@example.com">kontakt@example.com</a> und vernichten Sie diese Mitteilung
einschließlich der ggf. beigefügten Dateien.<br>
Weil wir die Echtheit oder Vollständigkeit der in dieser
Nachricht enthaltenen Informationen nicht garantieren
können, bitten wir um Verständnis, dass wir zu Ihrem und
unserem Schutz die rechtliche Verbindlichkeit der
vorstehenden Erklärungen ausschließen, soweit wir mit
Ihnen keine anders lautenden Vereinbarungen getroffen
haben.</small></small> </font> </p>
</div>
</body>
</html>
filename: message.html
preferences: !ruby/hash:ActiveSupport::HashWithIndifferentAccess
content-alternative: true
original-format: true
Mime-Type: text/html
Charset: UTF-8

View file

@ -38,7 +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><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>
<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: <a href="mailto:databases.en@example.com"><b>databases.en@example.com</b></a><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

@ -2033,7 +2033,7 @@ body: |-
</td>
<td style="font-size: 10px; color: #575757;" valign="top">
<table border="0" cellspacing="0" cellpadding="0"><tr><td valign="top"> EXAMPLE.GmbH <br> EXAMPLE-Straße 1-3 <br> 79426 Buggingen Germany</td></tr></table>
<br><strong>24 Stunden Bestellannahme:</strong><br><span style="color:#004aff;"> 0180 / 555 82</span><br>(14 Cent / Min. aus dem dt. Festnetz, Mobilfunk maximal 42 Cent/Min.)<br><strong>Fax: </strong><span style="color:#004aff;">+49 7631 / 360-444</span><br><strong>E-Mail: </strong>service@example.de?subject=Kunden-Nr:%205433623-1%20/%20E-Mail:%20info@example.de<br><strong>Internet: </strong><a href="http://www.example.de?utm_source=6640&amp;utm_medium=wwwexamplede&amp;vid=924&amp;curr=DEM&amp;wa_id=995&amp;wa_num=6640&amp;mt=XD9N%2BCHzabcdeJf2qq%2F6SJOi8YuwDuC%2BSyhb9yJht6yIebbxKlkPRr1RW0XYgUVt" rel="nofollow noreferrer noopener" target="_blank" title="http://www.example.de?utm_source=6640&amp;utm_medium=wwwexamplede&amp;vid=924&amp;curr=DEM&amp;wa_id=995&amp;wa_num=6640&amp;mt=XD9N%2BCHzabcdeJf2qq%2F6SJOi8YuwDuC%2BSyhb9yJht6yIebbxKlkPRr1RW0XYgUVt">www.example.de</a><br><br> HRB 300375 (Amtsgericht Freiburg im Breisgau) <br> Geschäftsführer: Daniel C. Ludwig <br> USt-ID: DE 142476770 · WEEE-Reg.-Nr. DE 60771113<br><br><sup>*</sup> Preise inkl. Mehrwertsteuer, zzgl. <a href="http://www.example.de/infos/versandkosten.htm?utm_source=6640&amp;utm_medium=Versandkosten&amp;vid=924&amp;curr=DEM&amp;wa_id=995&amp;wa_num=6640&amp;mt=XD9N%2BCHzabcdeJf2qq%2F6SJOi8YuwDuC%2BSyhb9yJht6yIebbxKlkPRr1RW0XYgUVt" rel="nofollow noreferrer noopener" target="_blank" title="http://www.example.de/infos/versandkosten.htm?utm_source=6640&amp;utm_medium=Versandkosten&amp;vid=924&amp;curr=DEM&amp;wa_id=995&amp;wa_num=6640&amp;mt=XD9N%2BCHzabcdeJf2qq%2F6SJOi8YuwDuC%2BSyhb9yJht6yIebbxKlkPRr1RW0XYgUVt">Versandkosten</a> (abhängig von Ihrer Zahlart)<br><sup>1</sup> ehem. empf. VK des Lieferanten<br><sup>2</sup> ehemaliger EXAMPLE-Preis<br><sup>3</sup> Preis in Originalverpackung<br><sup>4</sup> Summe der Einzelpreise<br><sup>6</sup> Ehem. unverb. Preisempfehl. d. Herstellers. Keine Gewähr für Aktualität.<br><br><a href="http://www.example.de/service-tested/?utm_source=6640&amp;utm_medium=footer_securesign&amp;vid=924&amp;curr=DEM&amp;wa_id=995&amp;wa_num=6640&amp;mt=XD9N%2BCHzabcdeJf2qq%2F6SJOi8YuwDuC%2BSyhb9yJht6yIebbxKlkPRr1RW0XYgUVt" rel="nofollow noreferrer noopener" target="_blank" title="http://www.example.de/service-tested/?utm_source=6640&amp;utm_medium=footer_securesign&amp;vid=924&amp;curr=DEM&amp;wa_id=995&amp;wa_num=6640&amp;mt=XD9N%2BCHzabcdeJf2qq%2F6SJOi8YuwDuC%2BSyhb9yJht6yIebbxKlkPRr1RW0XYgUVt"></a>
<br><strong>24 Stunden Bestellannahme:</strong><br><span style="color:#004aff;"> 0180 / 555 82</span><br>(14 Cent / Min. aus dem dt. Festnetz, Mobilfunk maximal 42 Cent/Min.)<br><strong>Fax: </strong><span style="color:#004aff;">+49 7631 / 360-444</span><br><strong>E-Mail: </strong><a href="mailto:service@example.de?subject=Kunden-Nr:%205433623-1%20/%20E-Mail:%20info@example.de">service@example.de</a><br><strong>Internet: </strong><a href="http://www.example.de?utm_source=6640&amp;utm_medium=wwwexamplede&amp;vid=924&amp;curr=DEM&amp;wa_id=995&amp;wa_num=6640&amp;mt=XD9N%2BCHzabcdeJf2qq%2F6SJOi8YuwDuC%2BSyhb9yJht6yIebbxKlkPRr1RW0XYgUVt" rel="nofollow noreferrer noopener" target="_blank" title="http://www.example.de?utm_source=6640&amp;utm_medium=wwwexamplede&amp;vid=924&amp;curr=DEM&amp;wa_id=995&amp;wa_num=6640&amp;mt=XD9N%2BCHzabcdeJf2qq%2F6SJOi8YuwDuC%2BSyhb9yJht6yIebbxKlkPRr1RW0XYgUVt">www.example.de</a><br><br> HRB 300375 (Amtsgericht Freiburg im Breisgau) <br> Geschäftsführer: Daniel C. Ludwig <br> USt-ID: DE 142476770 · WEEE-Reg.-Nr. DE 60771113<br><br><sup>*</sup> Preise inkl. Mehrwertsteuer, zzgl. <a href="http://www.example.de/infos/versandkosten.htm?utm_source=6640&amp;utm_medium=Versandkosten&amp;vid=924&amp;curr=DEM&amp;wa_id=995&amp;wa_num=6640&amp;mt=XD9N%2BCHzabcdeJf2qq%2F6SJOi8YuwDuC%2BSyhb9yJht6yIebbxKlkPRr1RW0XYgUVt" rel="nofollow noreferrer noopener" target="_blank" title="http://www.example.de/infos/versandkosten.htm?utm_source=6640&amp;utm_medium=Versandkosten&amp;vid=924&amp;curr=DEM&amp;wa_id=995&amp;wa_num=6640&amp;mt=XD9N%2BCHzabcdeJf2qq%2F6SJOi8YuwDuC%2BSyhb9yJht6yIebbxKlkPRr1RW0XYgUVt">Versandkosten</a> (abhängig von Ihrer Zahlart)<br><sup>1</sup> ehem. empf. VK des Lieferanten<br><sup>2</sup> ehemaliger EXAMPLE-Preis<br><sup>3</sup> Preis in Originalverpackung<br><sup>4</sup> Summe der Einzelpreise<br><sup>6</sup> Ehem. unverb. Preisempfehl. d. Herstellers. Keine Gewähr für Aktualität.<br><br><a href="http://www.example.de/service-tested/?utm_source=6640&amp;utm_medium=footer_securesign&amp;vid=924&amp;curr=DEM&amp;wa_id=995&amp;wa_num=6640&amp;mt=XD9N%2BCHzabcdeJf2qq%2F6SJOi8YuwDuC%2BSyhb9yJht6yIebbxKlkPRr1RW0XYgUVt" rel="nofollow noreferrer noopener" target="_blank" title="http://www.example.de/service-tested/?utm_source=6640&amp;utm_medium=footer_securesign&amp;vid=924&amp;curr=DEM&amp;wa_id=995&amp;wa_num=6640&amp;mt=XD9N%2BCHzabcdeJf2qq%2F6SJOi8YuwDuC%2BSyhb9yJht6yIebbxKlkPRr1RW0XYgUVt"></a>
</td>
</tr>
<tr><td valign="top"> </td></tr>

View file

@ -10,7 +10,7 @@ body: |-
<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>
<p><b>From:</b> Profsen Lab <a href="mailto:%5Bmailto:from@example.com%5D">[mailto:from@example.com]</a> <br><b>Sent:</b> Monday, 04 March 2019 12:41<br><b>To:</b> <a href="mailto:from@example.com">from@example.com</a><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:
- !ruby/hash:ActiveSupport::HashWithIndifferentAccess

View file

@ -3067,7 +3067,7 @@ Content-Type: text/html; charset=us-ascii; format=flowed
},
1 => {
content_type: 'text/html',
body: 'test%C3%A4%C3%B6%C3%BC@example.com',
body: '<a href="mailto:test%C3%A4%C3%B6%C3%BC@example.com">test</a>',
sender: 'Customer',
type: 'email',
internal: false,

View file

@ -149,6 +149,6 @@ test 123
attachment_url_evil_other = "#{attachment_url}?disposition=some_other"
assert_equal(HtmlSanitizer.strict("<a href=\"#{attachment_url_evil_other}\">Evil link</a>"), "<a href=\"#{attachment_url_good}\" rel=\"nofollow noreferrer noopener\" target=\"_blank\" title=\"#{attachment_url_good}\">Evil link</a>")
assert_equal(HtmlSanitizer.strict('<a href="mailto:testäöü@example.com">test</a>'), 'testäöü@example.com')
assert_equal(HtmlSanitizer.strict('<a href="mailto:testäöü@example.com" id="123">test</a>'), '<a href="mailto:test%C3%A4%C3%B6%C3%BC@example.com">test</a>')
end
end