I am composing my body to an email and I cant seem to get the syntax correct. I am trying to start the email with Dear firstname lastname, here is what I have
PHP Code:
$body = "Dear ".$fn." "." ".$ln." ","\r\n Thank you for your purchase of Strategies for Stretching Your Income. Use the code below to download your e-book:\r\n
$body = "Dear ".$fn." ".$ln.",\r\n Thank you for your purchase of Strategies for Stretching Your Income. Use the code below to download your e-book:\r\n";
I'm gonna play Grammar Nazi for a second. You should always add a comma before someone's name when addressing them. For example "Dear, John" or "Hello, Sarah."
PHP Code:
$body = "Dear, " . $fn . " " . $ln . ",\r\n Thank you for your purchase of Strategies for Stretching Your Income. Use the code below to download your e-book:\r\n";
Sorry ScottyBoy but I think you need to refresh your grammer skills if you think you that a comma goes after the Dear when starting a letter or email. The punctuation always goes after the name of the person you are addressing. The punctuation may change based on being formal or informal but it goes after the name of the person.
Sorry ScottyBoy but I think you need to refresh your grammer skills if you think you that a comma goes after the Dear when starting a letter or email. The punctuation always goes after the name of the person you are addressing. The punctuation may change based on being formal or informal but it goes after the name of the person.
I see. Well in that case, I withdraw my correction. Thank you for pointing that out to me, as I didn't know that there was an exception for "Dear someone"
I don't even think of it as an exception: in this case "Dear" is an adjective applied to following (proper) noun, which never calls for a comma; e.g.: it's not "Sweet, Georgia Brown".
"Please give us a simple answer, so that we don't have to think, because if we think, we might find answers that don't fit the way we want the world to be."
~ Terry Pratchett in Nation
Bookmarks