We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9496342 commit e6ac091Copy full SHA for e6ac091
compute/mailjet/src/main/java/com/example/compute/mailjet/MailjetSender.java
@@ -31,9 +31,9 @@
31
public class MailjetSender{
32
33
public static void main(String[] args) {
34
- final String MAILJET_API_KEY = "YOUR-MAILJET-API-KEY";
35
- final String MAILJET_SECRET_KEY = "YOUR-MAILJET-SECRET-KEY";
36
- MailjetClient client = new MailjetClient(MAILJET_API_KEY, MAILJET_SECRET_KEY);
+ final String mailjetApiKey = "YOUR-MAILJET-API-KEY";
+ final String mailjetSecretKey = "YOUR-MAILJET-SECRET-KEY";
+ MailjetClient client = new MailjetClient(mailjetApiKey, mailjetSecretKey);
37
38
MailjetSender sender = new MailjetSender();
39
sender.sendMailjet(args[0], args[1], client);
0 commit comments