A new version of MorphicExtras was added to project The Inbox:
http://source.squeak.org/inbox/MorphicExtras-ct.257.mcz==================== Summary ====================
Name: MorphicExtras-ct.257
Author: ct
Time: 15 August 2019, 5:43:28.839735 pm
UUID: 8c926fa7-3c44-2340-9b41-023ec1a216e8
Ancestors: MorphicExtras-tcj.256
Remove tempoary method
=============== Diff against MorphicExtras-tcj.256 ===============
Item was removed:
- ----- Method: HTTPClient class>>tellAFriend:url:name: (in category '*MorphicExtras-utilities') -----
- tellAFriend: emailAddressOrNil url: urlForLoading name: projectName
- | recipient subject body linkToInclude |
- recipient := emailAddressOrNil ifNil: ['RECIPIENT.GOESHERE'].
- subject := 'New/Updated Squeak project'.
- body := 'This is a link to the Squeak project ' , projectName , ': ' , String crlf.
- linkToInclude := urlForLoading.
- HTTPClient shouldUsePluginAPI
- ifTrue: [
- self composeMailTo: recipient subject: subject body: body , (linkToInclude copyReplaceAll: '%' with: '%25')]
- ifFalse: [FancyMailComposition new
- celeste: nil
- to: recipient
- subject: subject
- initialText: body
- theLinkToInclude: linkToInclude;
- open].!