WAEmailConfirmation


Seaside-Components-Dialogs

Comment:



Hierarchy:

ProtoObject
Object
WAPresenter
WAComponent
WAEmailConfirmation

Summary:

instance variables:

body from notice subject to

methods:

instance class
as yet unclassified no messages

Detail:

instance variables:

body
from
notice
subject
to

instance methods:

as yet unclassified
body: aString

	body _ aString
from: fromString

	from _ fromString
notice: aString

	notice _ aString
renderContentOn: html

	| url |
	url _ html urlForAction: [self answer].
	self sendMessageWithUrl: url.
	html divClass: 'notice' with: notice
sendMessageWithUrl: urlString

	SeasidePlatformSupport
		deliverMailFrom: from
		to: (Array with: to)
		text: (urlString, '
		
', body)
subject: aString

	subject _ aString
to: toString

	to _ toString

class methods:

^top


- made by Dandelion -