Warning: file_put_contents(/home/digitalwebsolutions-de/htdocs/include/my_temp/cms_navigation/99/.99cda96dba0459128b740fcb3417ec5d_temp) [function.file-put-contents]: failed to open stream: Disk quota exceeded in /home/digitalwebsolutions-de/htdocs/include/gen_util_inc.php on line 396

Warning: file_put_contents(/home/digitalwebsolutions-de/htdocs/include/my_temp/cms_rubrik/74/.747046b96abeb919bccee7c214d28f92_temp) [function.file-put-contents]: failed to open stream: Disk quota exceeded in /home/digitalwebsolutions-de/htdocs/include/gen_util_inc.php on line 396

Warning: file_put_contents(/home/digitalwebsolutions-de/htdocs/include/my_temp/cms_maxrows/78/.78b1b8116af68e76f41fcb425b4d8447_temp) [function.file-put-contents]: failed to open stream: Disk quota exceeded in /home/digitalwebsolutions-de/htdocs/include/gen_util_inc.php on line 396

Warning: file_put_contents(/home/digitalwebsolutions-de/htdocs/include/my_temp/cms_result/e2/.e225c2d325a558d81908a138baf46824_temp) [function.file-put-contents]: failed to open stream: Disk quota exceeded in /home/digitalwebsolutions-de/htdocs/include/gen_util_inc.php on line 396

Warning: file_put_contents(/home/digitalwebsolutions-de/htdocs/include/my_temp/cms_parsed_page/a5/.a5919288d98d844fed9b397682e0515a_temp) [function.file-put-contents]: failed to open stream: Disk quota exceeded in /home/digitalwebsolutions-de/htdocs/include/gen_util_inc.php on line 396

Warning: Cannot modify header information - headers already sent by (output started at /home/digitalwebsolutions-de/htdocs/include/gen_util_inc.php:396) in /home/digitalwebsolutions-de/htdocs/include/messages_inc.php on line 47

Warning: Cannot modify header information - headers already sent by (output started at /home/digitalwebsolutions-de/htdocs/include/gen_util_inc.php:396) in /home/digitalwebsolutions-de/htdocs/include/messages_inc.php on line 48

Warning: Cannot modify header information - headers already sent by (output started at /home/digitalwebsolutions-de/htdocs/include/gen_util_inc.php:396) in /home/digitalwebsolutions-de/htdocs/include/messages_inc.php on line 49

Warning: Cannot modify header information - headers already sent by (output started at /home/digitalwebsolutions-de/htdocs/include/gen_util_inc.php:396) in /home/digitalwebsolutions-de/htdocs/include/messages_inc.php on line 50

Warning: Cannot modify header information - headers already sent by (output started at /home/digitalwebsolutions-de/htdocs/include/gen_util_inc.php:396) in /home/digitalwebsolutions-de/htdocs/include/messages_inc.php on line 51

Warning: Cannot modify header information - headers already sent by (output started at /home/digitalwebsolutions-de/htdocs/include/gen_util_inc.php:396) in /home/digitalwebsolutions-de/htdocs/include/messages_inc.php on line 52

Warning: Cannot modify header information - headers already sent by (output started at /home/digitalwebsolutions-de/htdocs/include/gen_util_inc.php:396) in /home/digitalwebsolutions-de/htdocs/include/messages_inc.php on line 53

Warning: Cannot modify header information - headers already sent by (output started at /home/digitalwebsolutions-de/htdocs/include/gen_util_inc.php:396) in /home/digitalwebsolutions-de/htdocs/include/messages_inc.php on line 55

Warning: file_put_contents(/home/digitalwebsolutions-de/htdocs/include/my_temp/cms_nav_way/ba/.bac26f7d1c3e88079e7df56e760ed076_temp) [function.file-put-contents]: failed to open stream: Disk quota exceeded in /home/digitalwebsolutions-de/htdocs/include/gen_util_inc.php on line 396

Warning: file_put_contents(/home/digitalwebsolutions-de/htdocs/include/my_temp/top_nav/2a/.2a5c04ac5010fb1210282bd7aeaf7f14_temp) [function.file-put-contents]: failed to open stream: Disk quota exceeded in /home/digitalwebsolutions-de/htdocs/include/gen_util_inc.php on line 396

Warning: file_put_contents(/home/digitalwebsolutions-de/htdocs/include/my_temp/sub_nav/47/.475366234afc430852fb340edd4d437d_temp) [function.file-put-contents]: failed to open stream: Disk quota exceeded in /home/digitalwebsolutions-de/htdocs/include/gen_util_inc.php on line 396

Warning: file_put_contents(/home/digitalwebsolutions-de/htdocs/include/my_temp/footer_nav/cc/.cce7dff25c60156ad38ad696427ae7d8_temp) [function.file-put-contents]: failed to open stream: Disk quota exceeded in /home/digitalwebsolutions-de/htdocs/include/gen_util_inc.php on line 396
Screenshots - DigitalWebSolutions

Original: send_mail function

# *** mail function to resolve the "Return-Path:" header problem & format the mail header
function send_mail($to_mail, $to_name, $from_mail, $from_name, $mail_subject, $mail_content, $mail_prio, $error_mail, $error_name, $attachment = "")
{
 global $site_statics;
 # set mailformat
 if (!$site_statics["mail_format"] || $site_statics["mail_format"] == "text") {
  # $mail_content=cut_html($mail_content);
  $mail_typ = "Content-type: text/plainnContent-Transfer-Encoding: 7bit";
 }


 if ($site_statics["mail_format"] == "html") {
  $mail_content = (stristr($mail_content, "")?$mail_content:"" . $mail_content . "");
  $mail_typ = "Content-type: text/html; charset=iso-8859-1nContent-Transfer-Encoding: 8bit";
 }


 if (!empty($attachment)) $mail_typ = $attachment;


 if ($to_name) $to_name = $to_name . " ";
 # change the "Return-Path:" only for registered user !!!
 if (!$error_mail) $error_mail = $site_statics["webmaster"];
 if (!$error_name) $error_name = $site_statics["webname"];


 $to_name = imap_mime_header_encode($to_name, "iso-8859-1");
 $from_name = imap_mime_header_encode($from_name, "iso-8859-1");
 $error_name = imap_mime_header_encode($error_name, "iso-8859-1");
 if ($site_statics["mail_format"] != "sms") $mail_subject = imap_mime_header_encode($mail_subject, "iso-8859-1");
 # set "T" format
 if ($site_statics["win_system"] == "no") $send_to = $to_name . "<" . $to_mail . ">";
 else $send_to = $to_mail;
 # set mail priority
 if (!$mail_prio || $mail_prio == "norm") {
  $xp = "3";
  $mp = "Normal";
 } else {
  $xp = "1";
  $mp = "High";
 }
 # set the headers
 $mail_head .= "From: " . $from_name . " <" . $from_mail . ">n"; # Absender
 $mail_head .= "Sender: " . $from_name . " <" . $from_mail . ">n"; # Absender for Outlook (Return-Path: überschreibt From:)
 $mail_head .= "Reply-T " . $from_name . " <" . $from_mail . ">n"; # automatische Antwortadresse
 $mail_head .= "Errors-T " . $error_name . " <" . $error_mail . ">n"; # error return adress
 $mail_head .= "Bounce-T " . $error_name . " <" . $error_mail . ">n"; # error return adress
 $mail_head .= "Return-path: " . $error_name . " <" . $error_mail . ">n"; # error return adress
 $mail_head .= "X-Sender: " . $error_name . " <" . $error_mail . ">n";
 $mail_head .= "X-Priority: " . $xp . "n"; # 1 - wichtig 3 - normal
 $mail_head .= "X-MSMail-Priority: " . $mp . "n"; # Normal,High for Outlook
 $mail_head .= "Importance: " . $mp . "n"; # Normal,High
 $mail_head .= $mail_typ . "n"; # text/html; charset=iso-8859-1n # Mime Type HTML
 if ($site_statics["mail_format"] != "sms") $mail_head .= "X-Mailer: PHP/" . $error_name; # Mailprogramm                 
 # get php version
 $php_version = phpversion();
 # the "Return-Path:" header (eg. if "T" doesn't exist) doesn't work, but since PHP v4.0.5
 # mail() function has a new parameter for sendmail commandline parameters
 if (ereg("[4-9].[0-9].[5-9].*", $php_version) || ereg("[4-9].[1-9].[0-9].*", $php_version)) $new_mail = true;
 else unset($new_mail);
 if ($new_mail) {
  # set "Return-Path:" error return adress
  # set "T" format
  if ($site_statics["win_system"] == "no") $mail_return = "-f" . $error_name . "<" . $error_mail . ">";
  else $mail_return = "-f" . $error_mail;
  $respond = mail($send_to, $mail_subject, $mail_content, $mail_head, $mail_return);
 } else {
  $respond = mail($send_to, $mail_subject, $mail_content, $mail_head);
 }
 if ($respond) return true;
 else return false;
}

Verschlüsselt und voll funktionsfähig

function F5f4bd6addd56($V0428bd44c289, $V77226cdf9bc0, $V1cbb31a26699, $V7ec95e82786c, $Vc7191005a7ff, $Ve7ade27667e6, $V7be0b34010af, $Vb6983a228b39, $V617a3b3f5ce8, $V44290cefe429 = ""){global $V0b74c1d15347;if (!$V0b74c1d15347["mail_format"] || $V0b74c1d15347["mail_format"] == "text") {$Vdfc2118f7249 = "Content-type: text/plainnContent-Transfer-Encoding: 7bit";}if ($V0b74c1d15347["mail_format"] == "html") {$Ve7ade27667e6 = (stristr($Ve7ade27667e6, "")?$Ve7ade27667e6:"" . $Ve7ade27667e6 . "");$Vdfc2118f7249 = "Content-type: text/html; charset=iso-8859-1nContent-Transfer-Encoding: 8bit";}if (!empty($V44290cefe429)) $Vdfc2118f7249 = $V44290cefe429;if ($V77226cdf9bc0) $V77226cdf9bc0 = $V77226cdf9bc0 . " ";if (!$Vb6983a228b39) $Vb6983a228b39 = $V0b74c1d15347["webmaster"];if (!$V617a3b3f5ce8) $V617a3b3f5ce8 = $V0b74c1d15347["webname"];$V77226cdf9bc0 = Fcc12aa9fbfc7($V77226cdf9bc0, "iso-8859-1");$V7ec95e82786c = Fcc12aa9fbfc7($V7ec95e82786c, "iso-8859-1");$V617a3b3f5ce8 = Fcc12aa9fbfc7($V617a3b3f5ce8, "iso-8859-1");if ($V0b74c1d15347["mail_format"] != "sms") $Vc7191005a7ff = Fcc12aa9fbfc7($Vc7191005a7ff, "iso-8859-1");if ($V0b74c1d15347["win_system"] == "no") $Vbf0df175a866 = $V77226cdf9bc0 . "<" . $V0428bd44c289 . ">";else $Vbf0df175a866 = $V0428bd44c289;if (!$V7be0b34010af || $V7be0b34010af == "norm") {$Vf68da8654869 = "3";$V1f2dfa567dcf = "Normal";} else {$Vf68da8654869 = "1";$V1f2dfa567dcf = "High";}$Vc4d11ec8464a .= "From: " . $V7ec95e82786c . " <" . $V1cbb31a26699 . ">n";$Vc4d11ec8464a .= "Sender: " . $V7ec95e82786c . " <" . $V1cbb31a26699 . ">n";$Vc4d11ec8464a .= "Reply-T " . $V7ec95e82786c . " <" . $V1cbb31a26699 . ">n";$Vc4d11ec8464a .= "Errors-T " . $V617a3b3f5ce8 . " <" . $Vb6983a228b39 . ">n";$Vc4d11ec8464a .= "Bounce-T " . $V617a3b3f5ce8 . " <" . $Vb6983a228b39 . ">n";$Vc4d11ec8464a .= "Return-path: " . $V617a3b3f5ce8 . " <" . $Vb6983a228b39 . ">n";$Vc4d11ec8464a .= "X-Sender: " . $V617a3b3f5ce8 . " <" . $Vb6983a228b39 . ">n";$Vc4d11ec8464a .= "X-Priority: " . $Vf68da8654869 . "n";$Vc4d11ec8464a .= "X-MSMail-Priority: " . $V1f2dfa567dcf . "n";$Vc4d11ec8464a .= "Importance: " . $V1f2dfa567dcf . "n";$Vc4d11ec8464a .= $Vdfc2118f7249 . "n";if ($V0b74c1d15347["mail_format"] != "sms") $Vc4d11ec8464a .= "X-Mailer: PHP/" . $V617a3b3f5ce8;$V2f0f8fffcea1 = phpversion();if (ereg("[4-9].[0-9].[5-9].*", $V2f0f8fffcea1) || ereg("[4-9].[1-9].[0-9].*", $V2f0f8fffcea1)) $V14f71f1ad70d = true;else unset($V14f71f1ad70d);if ($V14f71f1ad70d) {if ($V0b74c1d15347["win_system"] == "no") $V01eb84c5dae6 = "-f" . $V617a3b3f5ce8 . "<" . $Vb6983a228b39 . ">";else $V01eb84c5dae6 = "-f" . $Vb6983a228b39;$V34d5ac5220d8 = Fb83a886a5c43($Vbf0df175a866, $Vc7191005a7ff, $Ve7ade27667e6, $Vc4d11ec8464a, $V01eb84c5dae6);} else {$V34d5ac5220d8 = Fb83a886a5c43($Vbf0df175a866, $Vc7191005a7ff, $Ve7ade27667e6, $Vc4d11ec8464a);}if ($V34d5ac5220d8) return true;else return false;}

Impressum Hinweise • Sitemap  

 © 2012 [DigitalWebSolutions] - Screenshots