We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 381c6e0 + 823af33 commit 796a397Copy full SHA for 796a397
snipeit.sh
@@ -932,15 +932,15 @@ case $setupmail in
932
933
echo -n " From name:"
934
read -r mailfromname
935
- sed -i "s|^\\(MAIL_FROM_NAME=\\).*|\\1$mailfromname|" "$APP_PATH/.env"
+ sed -i "s|^\\(MAIL_FROM_NAME=\\).*|\\1\\'$mailfromname\\'|" "$APP_PATH/.env"
936
937
echo -n " Reply to address:"
938
read -r mailreplytoaddr
939
sed -i "s|^\\(MAIL_REPLYTO_ADDR=\\).*|\\1$mailreplytoaddr|" "$APP_PATH/.env"
940
941
echo -n " Reply to name:"
942
read -r mailreplytoname
943
- sed -i "s|^\\(MAIL_REPLYTO_NAME=\\).*|\\1$mailreplytoname|" "$APP_PATH/.env"
+ sed -i "s|^\\(MAIL_REPLYTO_NAME=\\).*|\\1\\'$mailreplytoname\\'|" "$APP_PATH/.env"
944
setupmail="yes"
945
;;
946
[nN] | [n|N][O|o] )
0 commit comments