Uses of Class
cloud.opencode.base.email.Email.Builder
Packages that use Email.Builder
-
Uses of Email.Builder in cloud.opencode.base.email
Methods in cloud.opencode.base.email that return Email.BuilderModifier and TypeMethodDescriptionEmail.Builder.attach(Attachment attachment) Add attachment 添加附件Add file attachment 添加文件附件Email.Builder.attachAll(Collection<Attachment> attachments) Add multiple attachments 添加多个附件Add BCC recipient email addresses 添加密送收件人邮箱地址Email.Builder.bcc(Collection<String> addresses) Add BCC recipient email addresses from collection 从集合添加密送收件人邮箱地址static Email.BuilderEmail.builder()Create a new builder 创建新的构建器Add CC recipient email addresses 添加抄送收件人邮箱地址Email.Builder.cc(Collection<String> addresses) Add CC recipient email addresses from collection 从集合添加抄送收件人邮箱地址static Email.BuilderOpenEmail.email()Create email builder with default from address 创建带默认发件人的邮件构建器Set sender email address 设置发件人邮箱地址Set sender email address with display name 设置发件人邮箱地址和显示名称Add custom header 添加自定义邮件头Add multiple custom headers 添加多个自定义邮件头Set HTML content 设置HTML内容Email.Builder.priority(Email.Priority priority) Set email priority 设置邮件优先级Set reply-to address 设置回复地址Set email subject 设置邮件主题Set plain text content 设置纯文本内容Email.Builder.textAndHtml(String text, String htmlContent) Set both plain text and HTML content (multipart/alternative) 同时设置纯文本和HTML内容(multipart/alternative)Add recipient email addresses 添加收件人邮箱地址Email.Builder.to(Collection<String> addresses) Add recipient email addresses from collection 从集合添加收件人邮箱地址