1700479336
//通过构造函数传递邮件信息
1700479337
1700479338
public MailTemplate(String_from,String_to,String_subject,String
1700479339
1700479340
_context){
1700479341
1700479342
this.from=_from;
1700479343
1700479344
this.to=_to;
1700479345
1700479346
this.subject=_subject;
1700479347
1700479348
this.context=_context;
1700479349
1700479350
}
1700479351
1700479352
public String getFrom(){
1700479353
1700479354
return from;
1700479355
1700479356
}
1700479357
1700479358
public void setFrom(String from){
1700479359
1700479360
this.from=from;
1700479361
1700479362
}
1700479363
1700479364
public String getTo(){
1700479365
1700479366
return to;
1700479367
1700479368
}
1700479369
1700479370
public void setTo(String to){
1700479371
1700479372
this.to=to;
1700479373
1700479374
}
1700479375
1700479376
public String getSubject(){
1700479377
1700479378
return subject;
1700479379
1700479380
}
1700479381
1700479382
public void setSubject(String subject){
1700479383
1700479384
this.subject=subject;
1700479385
[
上一页 ]
[ :1.700479336e+09 ]
[
下一页 ]