วิธีแก้ปัญหา woocommerce ส่งเมลล์ไปยัง hotmail “=?UTF-8?Q??=”
วีธิแก้ให้ ftp เข้าไปที่ /public_html/wp-content/plugins/woocommerce/includes/emails
ให้เปิดไฟล์ที่อยู่ด้านในทั้งหมดแล้วแก้ ยกเว้น “class-wc-email.php”
หา code ส่วนนี้
$this->send( $this->get_recipient(), $this->get_subject(), $this->get_headers(), $this->get_attachments() );
ให้แก้เป็น
$this->send( $this->get_recipient(), “=?UTF-8?B?”.base64_encode($this->get_subject()).”?=”, $this->get_content(), $this->get_headers(), $this->get_attachments() );
You must be logged in to post a comment.