public interface S8MailBuilder
A Simple Mail Builder interface.
- Author:
- Pierre Convert Copyright (C) 2025, Pierre Convert. All rights reserved.
-
Method Summary
Modifier and TypeMethodDescriptionvoidHTML_appendBaseElement(String tag, String CSS_classname, String CSS_style, String innerHTMLText) Append base elementvoidHTML_setWrapperStyle(String CSS_classname, String CSS_style) Set wrapper stylevoidsetDisplayedSender(String name) Set the displayed name.voidsetRecipient(String email) Set the recipient emailvoidsetSubject(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
-