Search results

  1. R

    PHP mail() and PHPMailer

    I am saving a form content to a DB as well as sending the contents of the form using PHP mail() and HTML. I am using msmtp as the MTA. (smtp.gmail.com) This works fine. Now I want to send an additional email with an attachment. In this case I want to use PHPMailer. Not being a seasoned...
  2. R

    $_SESSION Issue

    Thank you for the reply. It's working now.
  3. R

    PHPmailer tutorial?

    So, currently using PHP mail() for simple emails. Now I need to send an attachment. In comes PHPmailer. Are there any recent tutorials on how to install and configure PHPmailer without using Composer? Most of the information I have googled is old. I am running PHP 7.4 in my test...
  4. R

    $_SESSION Issue

    So after some searching, I found that using $_SESSION to pass a variable from one php page to another would suit my needs. So here is what I am doing. I have an html form with multiple input. I generate a jobnumber when the form is sent (submitted). But I want to save the value of jobnumber...
  5. R

    PHP Mail working on one server, not another?

    So, the /usr/bin/msmtp file owner ship was root:root. On the test server it is www-data:root. I changed the production server to www-data:root and voila! Does that make sense? Ray
  6. R

    PHP Mail working on one server, not another?

    So I have a test environment (Ubuntu) on one server hosted by Linode. I have a production server (Ubuntu) hosted by SSD-Nodes. I have an html form that is saved in a mysql db. I also send a copy of the form to the originator as well as the owner of the website. It works fine on the test...
Back
Top