From a537ccd109c49b78a6502a5a58725c2fe1a7f870 Mon Sep 17 00:00:00 2001 From: git Date: Tue, 17 Jun 2025 14:26:33 +0100 Subject: [PATCH] fixed newline issue --- README.md | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index 4a45075..2060e46 100644 --- a/README.md +++ b/README.md @@ -17,13 +17,13 @@ This is a simple PHP webhook endpoint designed to receive incoming emails from [ ## πŸ“ Folder Structure -data/ -└── emails/ -└── example.com/ -└── alice/ -β”œβ”€β”€ 65ef123e4c1a0.eml -β”œβ”€β”€ index.php # optional -└── index.sh # optional +data/ +└── emails/ +└── example.com/ +└── alice/ +β”œβ”€β”€ 65ef123e4c1a0.eml +β”œβ”€β”€ index.php # optional +└── index.sh # optional --- @@ -82,17 +82,17 @@ Where sample.json contains a raw test email in JSON format. πŸ› οΈ Optional Per-Sender Automation To auto-process incoming emails, create either: - β€’ index.sh: a shell script that reads from stdin - β€’ index.php: a PHP script that reads from stdin + β€’ index.sh: a shell script that reads from stdin + β€’ index.php: a PHP script that reads from stdin These will be triggered automatically upon email arrival. βΈ» πŸ“¦ Dependencies - β€’ PHP 7.0+ - β€’ No external dependencies (uses built-in PHP functions) - β€’ A small helper file at receiveEmail/lib.php (ensure it’s present) + β€’ PHP 7.0+ + β€’ No external dependencies (uses built-in PHP functions) + β€’ A small helper file at receiveEmail/lib.php (ensure it’s present) βΈ»