File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed
src/main/java/com/sendgrid Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -56,8 +56,8 @@ public class SendGrid {
5656 /**
5757 * Constructor for using a username and password
5858 *
59- * @param username
60- * @param password
59+ * @param username SendGrid username
60+ * @param password SendGrid password
6161 */
6262 public SendGrid (String username , String password ) {
6363 this .username = username ;
@@ -70,7 +70,7 @@ public SendGrid(String username, String password) {
7070 /**
7171 * Constructor for using an API key
7272 *
73- * @param apiKey
73+ * @param apiKey SendGrid api key
7474 */
7575 public SendGrid (String apiKey ) {
7676 this .password = apiKey ;
@@ -425,7 +425,8 @@ public int getSendAt() {
425425
426426 /**
427427 * Convenience method to set the template
428- * @param templateId
428+ * @param templateId The ID string of your template
429+ * @return this
429430 */
430431 public Email setTemplateId (String templateId ) {
431432 this .getSMTPAPI ().addFilter ("templates" , "enable" , 1 );
You can’t perform that action at this time.
0 commit comments