メソッドを介して電子メールを送信しようとしています。方法があります
addHeader: headername with: aString
|email|
email:= aString.
'To'= headername ifTrue[ self message: 'To:', with ].
'From'= headername ifTrue[ self message: 'From:', with].
'Subject'= headername ifTrue[ self message:'Subject', with].
私の質問はワークスペースでした
addHeader:'To' with:'abcde@gmail.com'.
addHeader:'From' with:'efg@gmail.com'
上記のコードを1つずつ実行すると。これらの値はすべて、このメソッドに追加する必要があります。
message: aString
"Recieves To: abcde@gmail.com"
^ message
"next time when it recieves From: efg@gmail.com. How can i concatenate
both earlier String and current String"
この結果を取得する方法
'To: abcde@gmail.com
From: efg@gmail.com'