admin
2024-07-25 47e3087067abd35e6337c011f96d2338c0bb1aae
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
package org.yeshi.utils.mail;
 
/**
 * @author hxh
 * @title: EmailInfo
 * @description: 邮件信息
 * @date 2022/3/15 18:11
 */
public class EmailInfo {
    private String fromEmail;
    private String formEmailPwd;
    private String toEmail;
    private String title;
    private String content;
    private String app;
 
 
    public String getFromEmail() {
        return fromEmail;
    }
 
    public void setFromEmail(String fromEmail) {
        this.fromEmail = fromEmail;
    }
 
    public String getFormEmailPwd() {
        return formEmailPwd;
    }
 
    public void setFormEmailPwd(String formEmailPwd) {
        this.formEmailPwd = formEmailPwd;
    }
 
    public String getToEmail() {
        return toEmail;
    }
 
    public void setToEmail(String toEmail) {
        this.toEmail = toEmail;
    }
 
    public String getTitle() {
        return title;
    }
 
    public void setTitle(String title) {
        this.title = title;
    }
 
    public String getContent() {
        return content;
    }
 
    public void setContent(String content) {
        this.content = content;
    }
 
    public String getApp() {
        return app;
    }
 
    public void setApp(String app) {
        this.app = app;
    }
}