Awesome Message SDK - v0.12.4
    Preparing search index...

    Interface CreateEmailTemplateRequest

    템플릿 등록 요청 POST /email/v2.1/appKeys/{appKey}/templates

    docs/nhn-email-api/06-template.md

    interface CreateEmailTemplateRequest {
        categoryId: number;
        templateId: string;
        templateName: string;
        templateDesc?: string;
        useYn?: string;
        sendMailAddress: string;
        title: string;
        templateType?: string;
        body: string;
        attachFileIdList?: number[];
        userId?: string;
    }
    Index

    Properties

    categoryId: number

    카테고리 ID

    templateId: string

    템플릿 ID (최대 50자)

    templateName: string

    템플릿명 (최대 200자)

    templateDesc?: string

    템플릿 설명 (최대 4000자)

    useYn?: string

    사용 여부 (Y 기본값, N)

    sendMailAddress: string

    발신 메일 주소 (최대 300자)

    title: string

    메일 제목 (최대 500자)

    templateType?: string

    템플릿 타입 (DEFAULT 기본값, FREEMARKER) (최대 10자)

    body: string

    메일 본문

    attachFileIdList?: number[]

    첨부 파일 ID (fileId)

    userId?: string

    사용자 ID (최대 50자)