代码之家  ›  专栏  ›  技术社区  ›  WJA

Matlab中HTML格式的SMTP-sendmail

  •  0
  • WJA  · 技术社区  · 6 年前

    我试图通过Matlab中的SMTP发送电子邮件。本指南是一个很好的入门指南:

    https://nl.mathworks.com/help/matlab/import_export/sending-email.html

    它归结为以下代码行(在2016b中测试):

    setpref('Internet','E_mail','youraddress@yourserver.com');
    setpref('Internet','SMTP_Server','mail.server.network');
    
    sendmail('recipient@someserver.com','Hello From MATLAB!','body text here');
    

    sendmail('recipient@someserver.com','Hello From MATLAB!','<strong style="color:red">HTML test</strong>');
    

    如何启用HTML?设置某些首选项/编码这样简单吗?

    1 回复  |  直到 6 年前
        1
  •  0
  •   Dibya Sahoo    6 年前

    参考文献: https://www.mathworks.com/help/matlab/ref/sendmail.html

    sendmail函数不支持HTML格式的邮件。但是,您可以将HTML文件作为附件发送。