<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title><![CDATA[FrontAccounting forum — First name and last name in emails]]></title>
		<link>https://frontaccounting.com/punbb/viewtopic.php?id=5254</link>
		<atom:link href="https://frontaccounting.com/punbb/extern.php?action=feed&amp;tid=5254&amp;type=rss" rel="self" type="application/rss+xml" />
		<description><![CDATA[The most recent posts in First name and last name in emails.]]></description>
		<lastBuildDate>Fri, 24 Oct 2014 13:36:52 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Re: First name and last name in emails]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=21222#p21222</link>
			<description><![CDATA[<div class="quotebox"><cite>apmuthu wrote:</cite><blockquote><p>Make the title be part of the first name in this instance!</p></blockquote></div><p>That would allow you to greet them with &quot;Dear Mr. Joe&quot; or &quot;Dear Mr. Joe Smith&quot;, but not with the far more appropriate &quot;Dear Mr. Smith&quot;.</p><p>And prepending the title to the surname would yield &quot;Dear Joe Mr. Smith&quot;, which is even worse.</p><p>For now the best way is the &quot;Dear&quot; + name1 + name2, suggested in the first post, but the proper way would be adding a &quot;title&quot; field to the contact. That&#039;s a change that should not break anything.</p><p>I don&#039;t know how the templates are handled, but ideally they should be translated/adapted according to local customs. And while we&#039;re at it, the contacts should probably have a language field as well, so that documents can be issued in that particular language. That would be a nice touch in bilingual countries. Or for anyone doing business in more than one language, for that matter.</p>]]></description>
			<author><![CDATA[null@example.com (tm)]]></author>
			<pubDate>Fri, 24 Oct 2014 13:36:52 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=21222#p21222</guid>
		</item>
		<item>
			<title><![CDATA[Re: First name and last name in emails]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=21211#p21211</link>
			<description><![CDATA[<p>Make the title be part of the first name in this instance!</p>]]></description>
			<author><![CDATA[null@example.com (apmuthu)]]></author>
			<pubDate>Thu, 23 Oct 2014 18:10:13 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=21211#p21211</guid>
		</item>
		<item>
			<title><![CDATA[Re: First name and last name in emails]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=21210#p21210</link>
			<description><![CDATA[<p>It would be nice to have the option of using a title (Dear Mr. Jones).</p><p>The default was &quot;Dear Jones&quot;, which is kind of abrupt for Western use.</p>]]></description>
			<author><![CDATA[null@example.com (ckrosco)]]></author>
			<pubDate>Thu, 23 Oct 2014 17:07:50 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=21210#p21210</guid>
		</item>
		<item>
			<title><![CDATA[Re: First name and last name in emails]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=21202#p21202</link>
			<description><![CDATA[<p>Better still, replace lines 1003 to 1006:<br /></p><div class="codebox"><pre><code>$to = str_replace(&quot;,&quot;, &quot;&quot;, $contact[&#039;name&#039;].&#039; &#039;.$contact[&#039;name2&#039;])
    .&quot; &lt;&quot; . $contact[&#039;email&#039;] . &quot;&gt;&quot;;
$msg = _(&quot;Dear&quot;) . &quot; &quot; . $contact[&#039;name2&#039;] . &quot;,\n\n&quot; 
    . _(&quot;Attached you will find &quot;) . &quot; &quot; . $subject .&quot;\n\n&quot;;</code></pre></div><p>with<br /></p><div class="codebox"><pre><code>$to = str_replace(&quot;,&quot;, &quot;&quot;, $contact[&#039;name&#039;].&#039; &#039;.$contact[&#039;name2&#039;]);
$msg = _(&quot;Dear&quot;) . &quot; &quot; . $to . &quot;,\n\n&quot; 
    . _(&quot;Attached you will find &quot;) . &quot; &quot; . $subject .&quot;\n\n&quot;;
$to .= &quot; &lt;&quot; . $contact[&#039;email&#039;] . &quot;&gt;&quot;;</code></pre></div><p>In some places it may be rude to address one by first name or by full name unless you are sufficiently acquainted with them. Hence such a change may be done with a flag in the config file or in the per company based sys_prefs table.</p><p>Alternatively, it may be included in the core as is since this will avoid ambiguity with many persons having the same last name!</p>]]></description>
			<author><![CDATA[null@example.com (apmuthu)]]></author>
			<pubDate>Thu, 23 Oct 2014 02:31:38 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=21202#p21202</guid>
		</item>
		<item>
			<title><![CDATA[Re: First name and last name in emails]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=21179#p21179</link>
			<description><![CDATA[<p>its&nbsp; great ot see such a great work.</p>]]></description>
			<author><![CDATA[null@example.com (kvvaradha)]]></author>
			<pubDate>Sat, 18 Oct 2014 12:01:00 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=21179#p21179</guid>
		</item>
		<item>
			<title><![CDATA[First name and last name in emails]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=21175#p21175</link>
			<description><![CDATA[<p>I would like to suggest that the email sent to customers should address them by first name and last name, rather than just the last name.</p><p>reporting/includes/pdf.report.inc</p><p>line 1005</p><p>change </p><div class="codebox"><pre><code>$msg = _(&quot;Dear&quot;) . &quot; &quot; . $contact[&#039;name2&#039;] . &quot;,\n\n&quot; </code></pre></div><p>to </p><div class="codebox"><pre><code>$msg = _(&quot;Dear&quot;) . &quot; &quot; . $contact[&#039;name&#039;] .&#039; &#039;. $contact[&#039;name2&#039;] . &quot;,\n\n&quot; </code></pre></div>]]></description>
			<author><![CDATA[null@example.com (ckrosco)]]></author>
			<pubDate>Fri, 17 Oct 2014 20:50:09 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=21175#p21175</guid>
		</item>
	</channel>
</rss>
