我正在使用wso2/gmail包发送电子邮件通知。根据文档(https://central.ballerina.io/wso2/gmail),我们可以通过包发送邮件附件。但是,当我尝试将附件路径定义为参数时,会出现如下错误。
incompatible types: expected 'wso2/gmail:0.9.7:AttachmentPath', found 'string'
什么是附件路径类型?我们可以将附件路径的字符串数组解析为attachmentpath吗?这是我的邮件发送功能。

import wso2/gmail;
import ballerina/io;
import ballerina/log;
import ballerina/config;
import ballerina/http;

function sendErrorLogMail(string senderEmail, string recipientEmail, string subject, string messageBody) returns boolean {
    endpoint gmail:Client gmailErrorClient {
        clientConfig:{
            auth:{
                accessToken:config:getAsString("gmailApiConfiguration.accessToken"),
                refreshToken:config:getAsString("gmailApiConfiguration.refreshToken"),
                clientId:config:getAsString("gmailApiConfiguration.clientId"),
                clientSecret:config:getAsString("gmailApiConfiguration.clientSecret")
            }
        }
    };

    gmail:MessageRequest messageRequest;
    messageRequest.recipient = recipientEmail;
    messageRequest.sender = senderEmail;
    messageRequest.subject = subject;
    messageRequest.messageBody = messageBody;
    messageRequest.contentType = gmail:TEXT_HTML;

    //What is the attachment path?
    AttachmentPath attachmentPath = "./org/wso2/logs/loginfo.txt";

    messageRequest.attachmentPaths = attachmentPath;

    var sendMessageResponse = gmailErrorClient->sendMessage(senderEmail, untaint messageRequest);
    string messageId;
    string threadId;
    match sendMessageResponse {
        (string, string) sendStatus => {
            (messageId, threadId) = sendStatus;
            log:printInfo("Sent email to " + recipientEmail + " with message Id: " + messageId + " and thread Id:"
                    + threadId);
            return true;
        }
        gmail:GmailError e => {
            log:printInfo(e.message);
            return false;
        }
    }
}

最佳答案

AttachmentPath[wso2/gmail][1]中定义为记录。attachmentPaths字段需要这样的AttachmentPath对象数组。所以下面应该有用。

gmail:AttachmentPath attachmentPath= {
        attachmentPath:"./org/wso2/logs/loginfo.txt",
        mimeType:"text/plain"
};

messageRequest.attachmentPaths = [attachmentPaths];

10-07 12:32