diff options
| author | Nathan Kinkade <nkinkade@nkinka.de> | 2010-08-19 23:29:35 +0000 | 
|---|---|---|
| committer | Nathan Kinkade <nkinkade@nkinka.de> | 2010-08-19 23:29:35 +0000 | 
| commit | 45b6d344b4a5431e7cf11fde5808c63bf7553676 (patch) | |
| tree | 33a5bd2ee0124553c4d35f4152e607296479a551 /modules/gallery/tests/Sendmail_Test.php | |
| parent | d1475ec40ebda6404baab45b5b2482c651e657f9 (diff) | |
| parent | 21a0f832b66eaba902b09e2a88ece52c76e4a0c3 (diff) | |
Merge branch 'master' of git://github.com/gallery/gallery3
Diffstat (limited to 'modules/gallery/tests/Sendmail_Test.php')
| -rw-r--r-- | modules/gallery/tests/Sendmail_Test.php | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/modules/gallery/tests/Sendmail_Test.php b/modules/gallery/tests/Sendmail_Test.php index b20543d1..b9406047 100644 --- a/modules/gallery/tests/Sendmail_Test.php +++ b/modules/gallery/tests/Sendmail_Test.php @@ -65,14 +65,14 @@ class Sendmail_Test extends Gallery_Unit_Test_Case {                  "From: from@gallery3.com\n" .                  "Reply-To: public@gallery3.com\n" .                  "MIME-Version: 1.0\n" . -                "Content-type: text/html; charset=iso-8859-1\r\n" . +                "Content-Type: text/html; charset=UTF-8\r\n" .                  "Subject: Test Email Unit test\r\n\r\n" .                  "<html><body><p>This is an html msg</p></body></html>";      $result = Sendmail_For_Test::factory()        ->to("receiver@someemail.com")        ->subject("Test Email Unit test")        ->header("MIME-Version", "1.0") -      ->header("Content-type", "text/html; charset=iso-8859-1") +      ->header("Content-Type", "text/html; charset=UTF-8")        ->message("<html><body><p>This is an html msg</p></body></html>")        ->send()        ->send_text; | 
