PHP邮件程序从NAME更改

I have managed to send a mail to myself using this code.

    $mail = new PHPMailer;
    //$mail->SMTPDebug = 1;

    //Email server info
    $mail->isSMTP();
    $mail->Host = 'smtp-mail.outlook.com';
    $mail->SMTPSecure = 'tls';
    $mail->Port = 587;

    //User authentication info
    $mail->SMTPAuth = true;
    $mail->Username = '******@hotmail.com';
    $mail->Password = '********';

    //Email info
    $mail->From = 'noreply@ledii.net';
    $mail->FromName = 'LediiNet';
    $mail->addAddress($mail->Username);
    $mail->Subject = 'LediiNet Feedback';
    $mail->Body = 'Here are some thoughts...';

Is it possible to make it so that the mail will show up with my website name as sender insteath of my name and email?

I would preferrably want it to seem like the mail is sent from noreply@ledii.net and with the sender name of LediiNet.

I feel like I probably have to actually create that email somehow and connect to my host servers email server info?

I figured out how to do it, but I had to change to using the mail() function and modify my local files for it to work locally.