Changeset 1781
- Timestamp:
- 10/19/06 16:12:29
- Files:
-
- trunk/plagger/lib/Plagger/Plugin/Publish/Gmail.pm (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/plagger/lib/Plagger/Plugin/Publish/Gmail.pm
r1734 r1781 86 86 $msg->replace("X-Mailer" => "Plagger/$Plagger::VERSION"); 87 87 88 my $encoding = $self->conf->{encoding} || 'utf-8'; 88 89 $msg->attach( 89 Type => 'text/html; charset=utf-8',90 Data => encode( "utf-8", $body),90 Type => "text/html; charset=$encoding", 91 Data => encode($encoding, $body, Encode::FB_HTMLCREF), 91 92 Encoding => 'quoted-printable', 92 93 );
