Jump to content

alkastraverse

Members
  • Posts

    25
  • 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

315 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. Hi My username is alkastraverse Please add new domain: archive.alk.xx.kg Thank you so much!
  2. username: alkastraverse please reset my account. thank you so much!
  3. Hi My username is alkastraverse Please add new domain: alk.helioho.st Thank you so much!
  4. 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.
  5. 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
  6. Do you think your site has a configuration error (eg. Php,...)🤔
  7. It causes high traffic 🗿(or not)
  8. Hmm... I think a bad robot is using brute-force to crack the password
  9. No problem:3
  10. Full RAM or too much traffic on server 🐸
  11. You have traveled through time 🐧
  12. Wait, what's this? I think SMTP mail server is this domain🤔
  13. Me too 😭
  14. Lmao markdown is not working 🐸
×
×
  • Create New...