添加html内容后,Icalendar .ics没有显示问题



我在使用icalendar时遇到了这个问题,当发送到gmail,yahoo, aoutlook.com时,它不显示附件和确认按钮。它以前没有HTML消息和多部分/混合头。现在当我收到电子邮件时,它只显示日历的文本,它不能识别它。内容类型:multipart/混合;边界= " 982 f8d486c3cbed0e28b314e7a433c3d "

--982f8d486c3cbed0e28b314e7a433c3d
Content-Type: multipart/alternative; boundary="19f4b0e33c6f735ae6f858b1df7b72f2"
--19f4b0e33c6f735ae6f858b1df7b72f2
Content-Type: text/calendar; method=REQUEST; charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable
BEGIN:VCALENDAR
VERSION:2.0
PRODID:-//Testa//Tes//EN
METHOD:REQUEST
BEGIN:VEVENT
UID:20150914T205515-998107994-domain.com
DTSTAMP:20150914T205515
DTSTART:20150915T195500Z
DTEND:20150915T195500Z
ORGANIZER;CN=soy:MAILTO:admin@adminm.org
ATTENDEE;ROLE=REQ-PARTICIPANT;PARTSTAT=NEEDS-ACTION;RSVP=TRUE;CN=xxx.yyy@gmail.com:MAILTO:xxx.yyy@gmail.com
LOCATION:hj
SUMMARY:Rendez-vous 
BEGIN:VALARM
TRIGGER:-PT15M
ACTION:DISPLAY
DESCRIPTION:Reminder
END:VALARM
END:VEVENT
END:VCALENDAR
--19f4b0e33c6f735ae6f858b1df7b72f2--
--982f8d486c3cbed0e28b314e7a433c3d
Content-Type: application/ics; name="Rv-invite.ics"
Content-Disposition: attachment; filename="Rv-invite.ics"
Content-Transfer-Encoding: base64
X-Mailer: Microsoft Office Outlook 12.0
X-Mailer: CakePHP Email
Date: Mon, 14 Sep 2015 20:55:16 +0200
Message-ID: <55f71814db484f8fa8923d8664ca69fc@localhost>
Subject: Rendez-vous 
MIME-Version: 1.0
Content-Type: text/html; charset=UTF-8
Content-Transfer-Encoding: 8bit
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html>
<head>
        <title>Emails/html</title>
</head>
<body>
<p>Dear,</p>
<p>Mr xxx sent an appointment</p>
</body>
</html>

你的第二个body部分有2个content-type header:

Content-Type: application/ics; name="Rv-invite.ics"
Content-Disposition: attachment; filename="Rv-invite.ics"
Content-Transfer-Encoding: base64

Content-Type: text/html; charset=UTF-8
 Content-Transfer-Encoding: 8bit

看起来有些标题也属于顶层,而不是正文部分:

X-Mailer: Microsoft Office Outlook 12.0
X-Mailer: CakePHP Email
Date: Mon, 14 Sep 2015 20:55:16 +0200
Message-ID: <55f71814db484f8fa8923d8664ca69fc@localhost>
Subject: Rendez-vous 
MIME-Version: 1.0

请参阅这篇关于一般情况下正确使用MIME结构的文章:带有文本和日历的多部分电子邮件:Outlook不't识别ics

最新更新