summaryrefslogtreecommitdiffabout
path: root/kaddressbook/kabcore.cpp
Side-by-side diff
Diffstat (limited to 'kaddressbook/kabcore.cpp') (more/less context) (show whitespace changes)
-rw-r--r--kaddressbook/kabcore.cpp26
1 files changed, 10 insertions, 16 deletions
diff --git a/kaddressbook/kabcore.cpp b/kaddressbook/kabcore.cpp
index d6f0cee..6610288 100644
--- a/kaddressbook/kabcore.cpp
+++ b/kaddressbook/kabcore.cpp
@@ -467,5 +467,9 @@ void KABCore::sendMail()
-void KABCore::sendMail( const QString& email )
+void KABCore::sendMail( const QString& emaillist )
{
- bool result = ExternalAppHandler::instance()->mailToContacts(email);
+ // the parameter has the form "name1 <abc@aol.com>,name2 <abc@aol.com>;... "
+ if (emaillist.contains(",") > 0)
+ ExternalAppHandler::instance()->mailToMultipleContacts( emaillist, QString::null );
+ else
+ ExternalAppHandler::instance()->mailToOneContact( emaillist );
}
@@ -485,16 +489,5 @@ void KABCore::mailVCard( const QStringList& uids )
- QString tmpdir = locateLocal("tmp", KGlobal::getAppName());
+// QString tmpdir = locateLocal("tmp", KGlobal::getAppName());
-/*US
- // Create a temp dir, so that we can put the files in it with proper names
- KTempFile tempDir;
- if ( tempDir.status() != 0 ) {
- kdWarning() << strerror( tempDir.status() ) << endl;
- return;
- }
-
- QString dirName = tempDir.name();
- tempDir.unlink();
-*/
- QString dirName = tmpdir + "/" + KApplication::randomString( 8 );
+ QString dirName = "/tmp/" + KApplication::randomString( 8 );
@@ -515,2 +508,3 @@ void KABCore::mailVCard( const QStringList& uids )
QFile outFile(fileName);
+
if ( outFile.open(IO_WriteOnly) ) { // file opened successfully
@@ -531,3 +525,3 @@ void KABCore::mailVCard( const QStringList& uids )
- bool result = ExternalAppHandler::instance()->mailAttachments(urls.join(", "));
+ bool result = ExternalAppHandler::instance()->mailToMultipleContacts( QString::null, urls.join(", ") );