Hallo miteinander!
Ich hoffe mal, mir kann jemand helfen...
Ich habe ein Tool geschrieben, das automatisch Mails versendet. Die Ausgabe im Mail sieht eigentlich gut aus! Nur gibt es manchmal solche Datensätze, welche nicht fett sind, wobei die anderen es sind.
Bsp:
99 Die Page: http://intranet.***.ch/is/IS_S-CH/Regelwerk/Regelwerk.asp
verweist auf: https://cio.***.com/cms/cio/en/infosec/infosec-guide/Documents/is_guides_p_snm_rules_operation.pdf
<b>100 Die Page: http://intranet.***.ch/is/IS_S-CH/Regelwerk/Regelwerk.asp
verweist auf: https://intranet.legal.siemens.com/WorkingTools/SampleContracts/showcontracts.cfm?cat=13</b>
Oder z.B. steht manchmal im Mail:
17 Die Page: http://intranet.***.ch/is/IS_S-CH/Regelwerk/Regelwerk.asp
verweist auf: < a href='https://circulars.***.com/content/circulars/ca/DocLib/CircularsDocLib/cit0911.pdf'>https://circulars.siemens.com/content/circulars/ca/DocLib/CircularsDocLib/cit0911.pdf
statt der URL ohne <a href>
.
In meinem Code sieht es wie folgt aus:
$e_mail = "<html><head><title>Broken Links</title></head><body>";
[...]
foreach ($fehler_pro_status as $index)
{
$e_mail .= "< /br>< /br>".$i." Die Page: <a href='".$alle_links[$index]["parent"]."'>".$alle_links[$index]["parent"]."</a>< /br>verweist auf: <a href='".$alle_links[$index]["url"]."'>".$alle_links[$index]["url"]."</a>";
$i++;
}
[...]
//End-Tags für die Mail
$e_mail .= "</ body></ html>";
Weiss jemand die Lösung?
Danke schon mal im Voraus!
Gruss
Sandra