Skip to content

Commit

Permalink
Created a new, unbanned, email account
Browse files Browse the repository at this point in the history
It's under the name [email protected]

Committed by: ajthompson
  • Loading branch information
ajthompson committed May 5, 2014
1 parent 8697975 commit 863ead2
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ public Mailer() {
transport = session.getTransport("smtp");
}
// release
final String from = "[email protected]";
final String from = "struct.by.lightning.noreply@gmail.com";

// set the message to be from struct by lightning
message.setFrom(new InternetAddress(from));
Expand Down Expand Up @@ -182,7 +182,7 @@ public Mailer(PlanningPokerGame game) {
transport = session.getTransport("smtp");

// release
final String from = "[email protected]";
final String from = "struct.by.lightning.noreply@gmail.com";

// set the message to be from struct by lightning
message.setFrom(new InternetAddress(from));
Expand Down Expand Up @@ -257,7 +257,7 @@ public Mailer(PlanningPokerGame game, Requirement[] requirements) {
transport = session.getTransport("smtp");

// release
final String from = "[email protected]";
final String from = "struct.by.lightning.noreply@gmail.com";

// set the message to be from struct by lightning
message.setFrom(new InternetAddress(from));
Expand Down Expand Up @@ -393,7 +393,7 @@ private Session createSmtpSession() {
props.put("mail.smtp.port", "587");
props.put("mail.smtp.starttls.enable", "true");
props.put("mail.transport.protocol", "smtp");
props.put("mail.smtp.user", "[email protected]");
props.put("mail.smtp.user", "struct.by.lightning.noreply@gmail.com");
props.put("mail.smtp.password", "Donthackthis!12358");
}

Expand All @@ -413,7 +413,7 @@ public boolean send() {
transport.connect(host, login, pass);
} else
transport.connect("smtp.gmail.com",
"[email protected]",
"struct.by.lightning.noreply@gmail.com",
"Donthackthis!12358");

// send the message
Expand Down

0 comments on commit 863ead2

Please sign in to comment.