public interface S8MailBuilder
A Simple Mail Builder interface.
- Author:
- Pierre Convert Copyright (C) 2025, Pierre Convert. All rights reserved.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
HTML_appendBaseElement
(String tag, String CSS_classname, String CSS_style, String innerHTMLText) Append base elementvoid
HTML_setWrapperStyle
(String CSS_classname, String CSS_style) Set wrapper stylevoid
setDisplayedSender
(String name) Set the displayed name.void
setRecipient
(String email) Set the recipient emailvoid
setSubject
(String text) Set the subject
-
Method Details
-
setDisplayedSender
Set the displayed name.- Parameters:
name
- the displayed name
-
setRecipient
Set the recipient email- Parameters:
email
- the email of the recipient
-
setSubject
Set the subject- Parameters:
text
- the subject
-
HTML_setWrapperStyle
Set wrapper style- Parameters:
CSS_classname
- the CSS classnameCSS_style
- the CSS style
-
HTML_appendBaseElement
void HTML_appendBaseElement(String tag, String CSS_classname, String CSS_style, String innerHTMLText) Append base element- Parameters:
tag
- the tagCSS_classname
- the class nameCSS_style
- the styleinnerHTMLText
- the inner html content
-