Changeset 1211
- Timestamp:
- Apr 1, 2026, 10:23:38 AM (93 minutes ago)
- Location:
- java/installer2/src/net/oni2/aeinstaller
- Files:
-
- 2 edited
-
AEInstaller.properties (modified) (1 diff)
-
gui/reporter/ReporterDialog.java (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
java/installer2/src/net/oni2/aeinstaller/AEInstaller.properties
r1206 r1211 1 1 appname=AE Installer 2 2 appversion=.3 22 appversion=.33 -
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.
