Skip to content

Commit 326c2fa

Browse files
committed
remove the link text and leave it as here
1 parent b497f27 commit 326c2fa

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/HtmlConstants.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ public final class HtmlConstants {
1717
+ " <tbody>\n"
1818
+ " <tr>\n"
1919
+ " <td style=\"padding:10px 20px;vertical-align:"
20-
+ "middle;width:auto;text-align:center;font-size:10pt;margin:0px\""
21-
+ ">Having trouble reading this? View it in your browser at "
22-
+ "<a href=\"%s\">%s</a></td>\n"
20+
+ "middle;width:auto;text-align:center;font-size:9pt;margin:0px\""
21+
+ ">Having trouble reading this? View it in your browser "
22+
+ "<a href=\"%s\">here</a>!</td>\n"
2323
+ " </tr>\n"
2424
+ " <tr>\n"
2525
+ " <td style=\"padding:10px 20px;vertical-align:"

src/HtmlGenerator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ public String generateHtml(String folderPath, String outputPath,
195195
int urlStart = outputPath.indexOf("newsletters.nuscomputing.com");
196196
String indexUrl = "http://" + outputPath.substring(urlStart,
197197
outputPath.length()) + outputName;
198-
html += String.format(HtmlConstants.OPENING, indexUrl, indexUrl);
198+
html += String.format(HtmlConstants.OPENING, indexUrl);
199199
html += getDate();
200200
if (emailType.equals(FLAG_EMAIL_BLAST)) {
201201
html += String.format(HtmlConstants.AFTER_DATE, CC_NEWSLETTER);

0 commit comments

Comments
 (0)