惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

MongoDB | Blog
MongoDB | Blog
J
Java Code Geeks
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
D
DataBreaches.Net
腾讯CDC
GbyAI
GbyAI
I
InfoQ
博客园 - Franky
G
Google Developers Blog
Last Week in AI
Last Week in AI
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
V
Visual Studio Blog
Vercel News
Vercel News
博客园_首页
MyScale Blog
MyScale Blog
Martin Fowler
Martin Fowler
N
Netflix TechBlog - Medium
V
V2EX
T
The Blog of Author Tim Ferriss
M
MIT News - Artificial intelligence
雷峰网
雷峰网
H
Hackread – Cybersecurity News, Data Breaches, AI and More
大猫的无限游戏
大猫的无限游戏
The GitHub Blog
The GitHub Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
📎 Send Joget Emails with File Attachments Using BeanShell
Explorer · 2026-05-29 · via DEV Community

Explorer

Overview

Joget can send notification emails through its built-in email tool, but some projects need to call an external email API and include files uploaded or generated inside Joget. This pattern reads a Joget-managed file, converts it to Base64, builds a JSON payload, and sends it to an email API.

The example below is sanitized with generic field IDs, form table names, API variables, and recipient logic.

How It Works

  1. Resolve recipients from a Joget participant or direct email list.
  2. Read an uploaded/generated file using FileUtil.getFile.
  3. Validate the file extension before attaching it.
  4. Convert the file bytes to Base64.
  5. Send the email payload to an external API using HttpURLConnection.
  6. Close streams and disconnect the HTTP connection in inally.

Where to Use in Joget

Use this in Workflow Builder as a BeanShell Tool after a document is generated, a request is approved, or a certificate/report is ready to send.

Full Code

import java.io.BufferedReader;
import java.io.File;
import java.io.InputStreamReader;
import java.io.OutputStream;
import java.net.HttpURLConnection;
import java.net.URL;
import java.nio.charset.StandardCharsets;
import java.nio.file.Files;
import java.util.Base64;
import org.joget.apps.app.model.AppDefinition;
import org.joget.apps.app.service.AppUtil;
import org.joget.apps.form.service.FileUtil;
import org.joget.commons.util.LogUtil;
import org.joget.workflow.model.WorkflowAssignment;
import org.json.JSONArray;
import org.json.JSONObject;

public boolean isSupportedFileType(String fileName) {
    String[] allowedExtensions = {".pdf", ".png", ".jpg", ".jpeg"};
    String lowerName = fileName == null ? "" : fileName.toLowerCase();
    for (String ext : allowedExtensions) {
        if (lowerName.endsWith(ext)) {
            return true;
        }
    }
    return false;
}

public void addAttachment(JSONArray attachments, String fileName, String formTableName, String recordId) {
    try {
        if (!isSupportedFileType(fileName)) {
            LogUtil.warn("email-attachment", "Skipped unsupported file type: " + fileName);
            return;
        }

        File file = FileUtil.getFile(fileName, formTableName, recordId);
        if (file == null || !file.exists() || !file.isFile()) {
            LogUtil.warn("email-attachment", "File not found: " + fileName);
            return;
        }

        byte[] fileBytes = Files.readAllBytes(file.toPath());
        String base64 = Base64.getEncoder().encodeToString(fileBytes);

        JSONObject attachment = new JSONObject();
        attachment.put("name", fileName);
        attachment.put("bytes", base64);
        attachment.put("type", fileName.toLowerCase().endsWith(".pdf") ? "application/pdf" : "application/octet-stream");
        attachments.put(attachment);
    } catch (Exception e) {
        LogUtil.error("email-attachment", e, "Failed to process attachment: " + fileName);
    }
}

public Object execute(WorkflowAssignment assignment, AppDefinition appDef) {
    String apiUrl = "#appVariable.email_api_url#";
    String toParticipantId = "requester";
    String toSpecific = "";
    String cc = "";
    String bcc = "";

    String subject = "Request Completed - #form.service_request.request_no#";
    String htmlContent = "<p>Dear User,</p>"
            + "<p>Your request <strong>#form.service_request.request_no#</strong> has been completed.</p>"
            + "<p>Please find the generated document attached.</p>";

    JSONArray recipients = new JSONArray();
    Object emailObject = AppUtil.getEmailList(toParticipantId, toSpecific, assignment, appDef);
    String[] emailArray = emailObject.toString().replace("[", "").replace("]", "").split(",");
    for (String email : emailArray) {
        email = email.trim();
        if (!email.isEmpty()) {
            recipients.put(email);
        }
    }

    JSONArray attachments = new JSONArray();
    addAttachment(attachments, "Generated Document.pdf", "service_request", "#form.service_request.id#");

    JSONObject payloadJson = new JSONObject();
    payloadJson.put("recipients", recipients);
    payloadJson.put("cc", new JSONArray());
    payloadJson.put("bcc", new JSONArray());
    payloadJson.put("subject", subject);
    payloadJson.put("content", htmlContent);
    payloadJson.put("attachments", attachments);

    HttpURLConnection conn = null;
    OutputStream os = null;
    BufferedReader br = null;
    try {
        URL url = new URL(apiUrl);
        conn = (HttpURLConnection) url.openConnection();
        conn.setRequestMethod("POST");
        conn.setRequestProperty("Content-Type", "application/json; charset=UTF-8");
        conn.setDoOutput(true);

        os = conn.getOutputStream();
        byte[] input = payloadJson.toString().getBytes(StandardCharsets.UTF_8);
        os.write(input, 0, input.length);
        os.flush();

        br = new BufferedReader(new InputStreamReader(conn.getInputStream(), "UTF-8"));
        StringBuilder response = new StringBuilder();
        String line;
        while ((line = br.readLine()) != null) {
            response.append(line);
        }
        LogUtil.info("email-api", "Response: " + response.toString());
    } catch (Exception e) {
        LogUtil.error("email-api", e, "Failed to send email with attachment.");
    } finally {
        try { if (br != null) br.close(); } catch (Exception e) { }
        try { if (os != null) os.close(); } catch (Exception e) { }
        if (conn != null) conn.disconnect();
    }
    return null;
}

return execute(workflowAssignment, appDef);

Enter fullscreen mode Exit fullscreen mode

Example Use Cases

  • Send generated PDFs after workflow approval.
  • Attach uploaded documents to a notification email.
  • Send service-completion certificates through a central email API.
  • Add images or PDFs to escalation emails.

Customization Tips

  • Store the API endpoint in an app variable like email_api_url.
  • Keep allowed extensions strict and small.
  • Avoid logging full payloads because attachments are Base64 encoded.
  • Use generic form table names in public examples and real table names only inside your private environment.
  • Add API authentication headers if your email service requires a token.

Key Benefits

  • Works with Joget-managed uploaded files.
  • Keeps attachment handling reusable.
  • Avoids hard-coded file-system paths.
  • Sends structured JSON to a central email service.

Security Note

Never publish real email addresses, API URLs, tokens, table names, record IDs, or generated Base64 payloads. Treat attachment payloads as sensitive because they may contain private documents.

Final Thoughts

This approach is useful when Joget needs to integrate with a shared notification service while still using files stored in Joget forms.