New: Post-Quantum Cryptography tools — is your domain quantum-safe? Check now

email

SMTP Test

Test SMTP server connectivity and capabilities

What You Need to Know

What This Tool Does

This tool provides diagnostic and analysis capabilities for cybersecurity and network operations.

Why It Matters

  • Helps identify potential security issues
  • Improves system reliability and performance
  • Assists in troubleshooting and problem resolution

How to Read the Results

  • Review the test results carefully
  • Check for warnings or errors
  • Follow remediation suggestions if issues are found

Input Parameters

SMTP server hostname

SMTP port (default: 25)

Tool Status: Ready

Developer

API & CLI Usage

API Endpoint

POST /api/tools/smtp

Platform-Specific Examples

Bash (curl)
curl -X POST https://epcybertools.com/api/tools/smtp \
  -H "Content-Type: application/json" \
  -d '{"host":"smtp.gmail.com","port":587}'
wget
wget --method=POST \
  --header="Content-Type: application/json" \
  --body-data='{"host":"smtp.gmail.com","port":587}' \
  -O - https://epcybertools.com/api/tools/smtp
HTTPie (apt install httpie)
http POST https://epcybertools.com/api/tools/smtp \
  host="smtp.gmail.com" \
  port="587"
View full API documentation →