Jump to content

alkastraverse

Members
  • Posts

    22
  • Joined

  • Last visited

About alkastraverse

  • Birthday 12/04/2006

Contact Methods

  • Website URL
    https://alkastraverse.xyz/

Profile Information

  • Gender
    Male
  • Location
    VietNam
  • Interests
    Code :3

Recent Profile Visitors

112 profile views

alkastraverse's Achievements

Contributor

Contributor (5/14)

  • Dedicated Rare
  • Collaborator Rare
  • One Month Later Rare
  • Week One Done Rare
  • First Post Rare

Recent Badges

1

Reputation

  1. Honestly, you should avoid using PHP's mail(). - Many shared hosts disable it. - Even if it works, emails often land in spam. - It doesn’t support authentication or encryption. PHPMailer (with SMTP) is much more reliable and is considered the best practice for sending emails in PHP today.
  2. PHPMailer is more reliable than PHP's mail(), and works well on shared hosting without Composer. Steps: 1. Download PHPMailer ZIP here 2. Upload the folder to your host (e.g. /phpmailer/) 3. Use this sample code: <?php use PHPMailer\PHPMailer\PHPMailer; require 'phpmailer/src/PHPMailer.php'; require 'phpmailer/src/SMTP.php'; $mail = new PHPMailer(); $mail->isSMTP(); $mail->Host = 'your_email_server'; $mail->SMTPAuth = true; $mail->Username = 'your_email@example.com'; $mail->Password = 'your_app_password'; $mail->SMTPSecure = 'tls'; $mail->Port = 587; $mail->setFrom('your_email@example.com', 'Your Name'); $mail->addAddress('recipient@example.com'); $mail->Subject = 'Test Email'; $mail->Body = 'Hello, this is a test email sent via PHPMailer on shared hosting.'; echo $mail->send() ? "Sent!" : "Error: ".$mail->ErrorInfo; ?> PHPMailer + SMTP ensures better deliverability, supports HTML emails and attachments
  3. Do you think your site has a configuration error (eg. Php,...)🤔
  4. It causes high traffic 🗿(or not)
  5. Hmm... I think a bad robot is using brute-force to crack the password
  6. Full RAM or too much traffic on server 🐸
  7. You have traveled through time 🐧
  8. Wait, what's this? I think SMTP mail server is this domain🤔
  9. I think SMTPmart is best choice 🗿
  10. Lmao markdown is not working 🐸
  11. If your goal is to get an additional TLS certificate (separate from the one automatically issued by SSL It! in Plesk), you won’t be able to use the normal webroot ACME challenge, because as you noticed nginx blocks direct access to `/.well-known/acme-challenge/`. A few alternatives you can try: - Use the **DNS-01 challenge** instead of HTTP-01. Let’s Encrypt supports this, and it doesn’t depend on webroot access. - If you only need the cert for client-side authentication, you could generate it via certbot or acme.sh on your local machine and then import it into Plesk. - Or simply rely on the default Let’s Encrypt certificate managed by SSL It! for the domain, since it’s already trusted by browsers/clients. If you don’t have a VPS, the easiest and most reliable approach is probably **DNS-01 validation** through your domain’s DNS provider. That way you can still issue a valid cert without touching nginx config. Hope this clears things up a bit!
  12. If you’re also open to alternatives, I’d recommend looking at Zoho Mail. It’s not really built for bulk marketing like SMTPmart or Brevo, but it’s a very solid option for reliable business email. ✅ Pros: - Has a free plan (up to 5 users, 5GB each). - Very stable and trusted as a business email provider. - Supports custom domains with SMTP/IMAP/POP3. ⚠️ Cons: - Sending limits are much lower (around 200 emails/day on the free plan). - Not designed for large marketing campaigns. So in short, if your goal is marketing and automation, Brevo might still be the better fit. But if you just need professional email for your domain, Zoho Mail is a great choice.
×
×
  • Create New...