We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c471f0 commit 776765eCopy full SHA for 776765e
build.gradle
@@ -7,6 +7,7 @@ repositories {
7
}
8
9
dependencies {
10
+ implementation 'javax.mail:javax.mail-api:1.6.2'
11
implementation 'junit:junit:4.13.1'
12
testImplementation('org.junit.jupiter:junit-jupiter:5.6.0')
13
src/main/java/EmailDelivery.java
@@ -1,6 +1,8 @@
1
+import javax.mail.Session;
2
public class EmailDelivery implements ISendVerificationCode{
3
public void sendVerificationCode(String email, int code){
4
/*TODO: When this is implemented, the verification code will be sent to the email specified by String email*/
5
System.out.println("Verification code sent to " + email);
6
+
0 commit comments