All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.mosip.authentication.common.service.integration.dto.MailRequestDto Maven / Gradle / Ivy

package io.mosip.authentication.common.service.integration.dto;

import org.springframework.web.multipart.MultipartFile;
import lombok.Data;


/**
 * General-purpose of {@code MailRequestDto} class used to store Mail request
 * Info's
 * 
 * @author Dinesh Karuppiah.T
 * @author Rakesh Roshan
 */
@Data
public class MailRequestDto {

	/**
	 * Variable to hold mail to
	 */
	String[] mailTo;
	/**
	 * Variable to hold mail cc
	 */
	String[] mailCc;
	/**
	 * Variable to hold mail subject
	 */
	String mailSubject;
	/**
	 * Variable to hold mail content
	 */
	String mailContent;
	/**
	 * Variable to hold attachments
	 */
	MultipartFile[] attachments;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy