This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import org.apache.solr.client.solrj.SolrServer; | |
import org.apache.solr.client.solrj.SolrServerException; | |
import org.apache.solr.common.params.ModifiableSolrParams; | |
import org.apache.solr.common.params.SolrParams; | |
import org.apache.solr.common.util.NamedList; | |
public class SolrDataImportClient { | |
private SolrServer server; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Set message = CreateObject("CDO.Message") | |
message.From = "[email protected]" | |
message.To = "[email protected]" | |
message.Subject = "件名" | |
message.TextBody = "本文。" | |
message.TextBodyPart.Charset = "ISO-2022-JP" | |
Const schemas = "http://schemas.microsoft.com/cdo/configuration/" | |
message.Configuration.Fields.Item(schemas + "sendusing") = 2 | |
message.Configuration.Fields.Item(schemas + "smtpconnectiontimeout") = 30 |