- Timestamp:
- Apr 1, 2026, 10:23:38 AM (3 hours ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
java/installer2/src/net/oni2/aeinstaller/gui/reporter/ReporterDialog.java
r1034 r1211 13 13 import javax.activation.DataSource; 14 14 import javax.activation.FileDataSource; 15 import javax.mail.Address; 15 16 import javax.mail.AuthenticationFailedException; 16 17 import javax.mail.Message; … … 68 69 private final String SMTP_HOST_NAME = "mail.illy.bz"; 69 70 private final String EMAIL_SUBJECT = "AE support request"; 71 private final String EMAIL_FROM = "ae-support@oni2.net"; 70 72 private final String EMAIL_TO = "ae-support@oni2.net"; 71 73 … … 118 120 // create a message 119 121 Message msg = new MimeMessage(session); 120 msg.setFrom(new InternetAddress(txtMail.getText())); 122 123 msg.setFrom(new InternetAddress(EMAIL_TO)); 124 msg.setReplyTo(new Address[] { new InternetAddress(txtMail.getText())}); 121 125 msg.setRecipient(RecipientType.TO, new InternetAddress(EMAIL_TO)); 122 126 if (chkGetCopy.isSelected())
Note:
See TracChangeset
for help on using the changeset viewer.
