]> git.proxmox.com Git - mirror_acme.sh.git/commitdiff
Fix space inconsistency
authorSteven Zhu <github@stevenz.net>
Wed, 7 Jul 2021 02:54:15 +0000 (22:54 -0400)
committerGitHub <noreply@github.com>
Wed, 7 Jul 2021 02:54:15 +0000 (22:54 -0400)
notify/sendgrid.sh

index ea4dcc93f04c974d74526150586e0ef6000083e1..82d3f6c679ff3e06e3d147a212114484ddc614fb 100644 (file)
@@ -44,7 +44,7 @@ sendgrid_send() {
   export _H2="Content-Type: application/json"
 
   _content="$(echo "$_content" | _json_encode)"
-  
+
   if [ -z "$SENDGRID_FROM_NAME" ]; then
     _data="{\"personalizations\": [{\"to\": [{\"email\": \"$SENDGRID_TO\"}]}],\"from\": {\"email\": \"$SENDGRID_FROM\"},\"subject\": \"$_subject\",\"content\": [{\"type\": \"text/plain\", \"value\": \"$_content\"}]}"
   else