Squeak SecureSMTPClient to send HTML email
问题 I am having trouble figuring out how to send an html e-Mail using SecureSMTPClient . The e-Mail client always shows it as plaintext, which means that the MIME is not getting set, i.e. SecureSMTPClient forgets to send: MIME-Version: 1.0 Content-Type: text/html; charset=utf-8 eventhough I specify text/html . Here is the code title:='title1'. content:='<a href="myurl">a link</a>'. smtpClient := SecureSMTPClient new. smtpClient user: senderMailAddress. smtpClient password: pw. smtpClient