2013-07-09 49 views

回答

1

你應該說明你正在使用哪個Smalltalk,因爲有不同的方言,並且都有不同的方式來處理諸如電子郵件之類的東西。

在Pharo中,請查看SMTPClient類。有一些類方法可以顯示如何發送電子郵件的示例方法。

對於VisualWorks,請加載包裹NetClients,並簽出類MailMessage和SMTPClient。

這裏的代碼,發送電子郵件在VisualWorks中的例子:

(Net.SMTPClient host: Net.NetClient netSettings defaultOutgoingHost name) 
     user: Net.NetClient netSettings defaultOutgoingHost netUser; 
     send: (Net.MailMessage newTextPlain 
      subject: 'This is the subject'; 
      from: '[email protected]'; 
      to: '[email protected]'; 
      text: 'This is the body'; 
      yourself). 
0

對於安全的郵件發送,採取菲羅2.0圖像上看看在Zodiac-ExtraZdcSecureSMTPClient。 類的一面顯示使用Gmail。

相關問題