]> git.etc.gen.nz Git - mythtv-status.git/commitdiff
Starting to add style to the html email. Working with the mythweb look
authorDean Pemberton <dean@deanpemberton.com>
Thu, 31 Jul 2008 03:55:42 +0000 (15:55 +1200)
committerAndrew Ruthven <andrew@etc.gen.nz>
Thu, 31 Jul 2008 04:26:40 +0000 (16:26 +1200)
bin/mythtv-status

index 94489d45e71678d266024dbfbe35bdd7f98ca894..a1dc93e335d12d7f74b646aeca11dbd6cf1a80c1 100755 (executable)
@@ -109,6 +109,12 @@ if (defined $colour && scalar(@email) == 1) {
   $normal  = '</span>';
 }
 
+#
+# The HTML Email headers
+#
+
+$html_header = "<body bgcolor=\"#191c26\" style=\"width: 600px; font-family: Arial, Helvetica, sans-serif; color: #FFFFFF; font-size: 12px; line-height:1.4em; margin: 0 0 0 10px;\">";
+
 # Is a warning present?
 my $warn_present = 0;
 
@@ -450,7 +456,7 @@ my %version;
 my $exit_value = 0;
 my $title =  "MythTV status for $host";
 my $output = "$title\n";
-my $html = "<h1>$title</h1>\n";
+my $html = $html_header . "<h1>$title</h1>\n";
 $output .= '=' x length($title) . "\n";
 
 for my $block (@blocks) {
@@ -574,10 +580,6 @@ if ($return_code_only) {
       $suffix = "MULTIPLE WARNINGS";
     }
 
-    # my $html = '<span style="color:green">\n';
-    #     $html .= $output;
-    #     $html .= "</span>\n";
-
     my $mail = MIME::Entity->build(
       To      => \@email,
       Subject => $title . (defined $suffix ? " - $suffix" : ''),
@@ -598,7 +600,7 @@ if ($return_code_only) {
 
     $mail->send('sendmail');
 
-    #   print $mail->as_string;
+    print $mail->as_string;
 
   }
 }