Reputation: 569
When I look into source of mail I found this type of encoding where "=09" is apparently space... How to make it in PHP?
<style type=3D"text/css">
=09=09body=2C#bodyTable=2C#bodyCell{
=09=09=09height:100% !important;
=09=09=09margin:0;
=09=09=09padding:0;
=09=09=09width:100% !important;
=09=09}
=09=09table{
=09=09=09border-collapse:collapse;
=09=09}
=09=09img=2Ca img{
=09=09=09border:0;
=09=09=09outline:none;
Upvotes: 0
Views: 78
Reputation: 12776
It's quoted-printable encoding, using printable ASCII characters to encode 8-bit data.
PHP has quoted_printable_decode function to decode it.
Upvotes: 1