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 c83e971 commit 27c420cCopy full SHA for 27c420c
src/main/java/com/vonage/quickstart/messages/mms/SendMmsContent.java
@@ -35,11 +35,8 @@ public static void main(String[] args) throws Exception {
35
var response = client.getMessagesClient().sendMessage(
36
MmsContentRequest.builder()
37
.from(MMS_SENDER_ID).to(MESSAGES_TO_NUMBER)
38
- .addAudio(MESSAGES_AUDIO_URL)
39
.addImage(MESSAGES_IMAGE_URL)
40
- .addVideo(MESSAGES_VIDEO_URL)
41
.addFile(MESSAGES_FILE_URL)
42
- .addVcard(MESSAGES_VCARD_URL)
43
.build()
44
);
45
System.out.println("Message sent successfully. ID: "+response.getMessageUuid());
0 commit comments